biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / applications / audio / bshapr / default.nix
blob728c60b2e86fde71ef6519c381d6fde03f0b3cf1
1 { lib, stdenv, fetchFromGitHub, xorg, cairo, lv2, pkg-config }:
3 stdenv.mkDerivation rec {
4   pname = "bshapr";
5   version = "0.13";
7   src = fetchFromGitHub {
8     owner = "sjaehn";
9     repo = "BShapr";
10     rev = "v${version}";
11     sha256 = "sha256-9I4DPRl6i/VL8Etw3qLGZkP45BGsbxFxNOvRy3B3I+M=";
12   };
14   nativeBuildInputs = [ pkg-config ];
15   buildInputs = [
16     xorg.libX11 cairo lv2
17   ];
19   installFlags = [ "PREFIX=$(out)" ];
21   meta = with lib; {
22     homepage = "https://github.com/sjaehn/BShapr";
23     description = "Beat / envelope shaper LV2 plugin";
24     maintainers = [ maintainers.magnetophon ];
25     platforms = platforms.linux;
26     license = licenses.gpl3;
27   };