depot/third_party/nixpkgs/pkgs/by-name/bc/bchoppr/package.nix

41 lines
748 B
Nix

{
lib,
stdenv,
fetchFromGitHub,
pkg-config,
cairo,
libX11,
lv2,
}:
stdenv.mkDerivation rec {
pname = "bchoppr";
version = "1.12.6";
src = fetchFromGitHub {
owner = "sjaehn";
repo = pname;
rev = version;
hash = "sha256-/aLoLUpWu66VKd9lwjli+FZZctblrZUPSEsdYH85HwQ=";
fetchSubmodules = true;
};
nativeBuildInputs = [ pkg-config ];
buildInputs = [
cairo
libX11
lv2
];
installFlags = [ "PREFIX=$(out)" ];
enableParallelBuilding = true;
meta = with lib; {
homepage = "https://github.com/sjaehn/BChoppr";
description = "Audio stream chopping LV2 plugin";
maintainers = [ maintainers.magnetophon ];
platforms = platforms.linux;
license = licenses.gpl3Plus;
};
}