nixpkgs/pkgs/applications/audio/bshapr/default.nix

29 lines
665 B
Nix
Raw Normal View History

2019-10-29 19:32:16 +01:00
{ stdenv, fetchFromGitHub, xorg, cairo, lv2, pkgconfig }:
stdenv.mkDerivation rec {
pname = "BShapr";
2019-12-08 03:34:10 +01:00
version = "0.6";
2019-10-29 19:32:16 +01:00
src = fetchFromGitHub {
owner = "sjaehn";
repo = pname;
rev = "v${version}";
2019-12-08 03:34:10 +01:00
sha256 = "0mi8f0svq1h9cmmxyskcazr5x2q4dls3j9jc6ahi5rlk7i0bpa74";
2019-10-29 19:32:16 +01:00
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [
xorg.libX11 cairo lv2
];
installFlags = [ "PREFIX=$(out)" ];
meta = with stdenv.lib; {
homepage = https://github.com/sjaehn/BShapr;
description = "Beat / envelope shaper LV2 plugin";
maintainers = [ maintainers.magnetophon ];
platforms = platforms.linux;
license = licenses.gpl3;
};
}