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

29 lines
665 B
Nix
Raw Normal View History

2019-10-29 18:32:16 +00:00
{ stdenv, fetchFromGitHub, xorg, cairo, lv2, pkgconfig }:
stdenv.mkDerivation rec {
pname = "BShapr";
2020-01-20 02:48:50 +00:00
version = "0.7";
2019-10-29 18:32:16 +00:00
src = fetchFromGitHub {
owner = "sjaehn";
repo = pname;
rev = "v${version}";
2020-01-20 02:48:50 +00:00
sha256 = "1422xay28jkmqlj5y4vhb57kljy6ysvxh20cxpfxm980m8n54gq5";
2019-10-29 18:32:16 +00: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;
};
}