evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / bs / bs2b-lv2 / package.nix
blob161522ef32f11504b3bc50b5dd291398ac986328
2   lib,
3   stdenv,
4   fetchFromGitHub,
5   pkg-config,
6   python3,
7   wafHook,
8   libbs2b,
9   lv2,
12 stdenv.mkDerivation rec {
13   pname = "bs2b-lv2";
14   version = "1.1.1";
16   src = fetchFromGitHub {
17     owner = "nilninull";
18     repo = "bs2b-lv2";
19     rev = "v${version}";
20     fetchSubmodules = true;
21     hash = "sha256-dOcDPtiKN9Kfs2cdaeDO/GkWrh5tfJSHfiHPBtxJXvc=";
22   };
24   nativeBuildInputs = [
25     pkg-config
26     python3
27     wafHook
28   ];
30   buildInputs = [
31     libbs2b
32     lv2
33   ];
35   meta = with lib; {
36     description = "LV2 plugin for using Bauer stereophonic-to-binaural DSP library";
37     homepage = "https://github.com/nilninull/bs2b-lv2";
38     license = licenses.gpl3Plus;
39     maintainers = with maintainers; [ orivej ];
40     platforms = platforms.linux;
41   };