Unverified Commit fe5cc451 authored by Aleksana's avatar Aleksana Committed by GitHub
Browse files

bs2b-lv2: init at 1.1.1 (#341575)

parents 8b9a6f76 86b74d68
Loading
Loading
Loading
Loading
+42 −0
Original line number Diff line number Diff line
{
  lib,
  stdenv,
  fetchFromGitHub,
  pkg-config,
  python3,
  wafHook,
  libbs2b,
  lv2,
}:

stdenv.mkDerivation rec {
  pname = "bs2b-lv2";
  version = "1.1.1";

  src = fetchFromGitHub {
    owner = "nilninull";
    repo = "bs2b-lv2";
    rev = "v${version}";
    fetchSubmodules = true;
    hash = "sha256-dOcDPtiKN9Kfs2cdaeDO/GkWrh5tfJSHfiHPBtxJXvc=";
  };

  nativeBuildInputs = [
    pkg-config
    python3
    wafHook
  ];

  buildInputs = [
    libbs2b
    lv2
  ];

  meta = with lib; {
    description = "LV2 plugin for using Bauer stereophonic-to-binaural DSP library";
    homepage = "https://github.com/nilninull/bs2b-lv2";
    license = licenses.gpl3Plus;
    maintainers = with maintainers; [ orivej ];
    platforms = platforms.linux;
  };
}