Luke Granger-Brown
57725ef3ec
git-subtree-dir: third_party/nixpkgs git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
42 lines
761 B
Nix
42 lines
761 B
Nix
{
|
|
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;
|
|
};
|
|
}
|