mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 15:03:28 +00:00
bs2b-lv2: init at 1.1.1
This commit is contained in:
parent
12a58efb2c
commit
86b74d682a
42
pkgs/by-name/bs/bs2b-lv2/package.nix
Normal file
42
pkgs/by-name/bs/bs2b-lv2/package.nix
Normal file
@ -0,0 +1,42 @@
|
||||
{
|
||||
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;
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user