acr-cli: init at 0.14 (#359508)
[NixPkgs.git] / pkgs / by-name / bc / bchoppr / package.nix
blobb841764f796181c0080894968ec267cff1492ba8
1 { lib, stdenv, fetchFromGitHub, pkg-config, cairo, libX11, lv2 }:
3 stdenv.mkDerivation rec {
4   pname = "bchoppr";
5   version = "1.12.6";
7   src = fetchFromGitHub {
8     owner = "sjaehn";
9     repo = pname;
10     rev = version;
11     hash = "sha256-/aLoLUpWu66VKd9lwjli+FZZctblrZUPSEsdYH85HwQ=";
12     fetchSubmodules = true;
13   };
15   nativeBuildInputs = [ pkg-config ];
16   buildInputs = [ cairo libX11 lv2 ];
18   installFlags = [ "PREFIX=$(out)" ];
20   enableParallelBuilding = true;
22   meta = with lib; {
23     homepage = "https://github.com/sjaehn/BChoppr";
24     description = "Audio stream chopping LV2 plugin";
25     maintainers = [ maintainers.magnetophon ];
26     platforms = platforms.linux;
27     license = licenses.gpl3Plus;
28   };