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

29 lines
665 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, xorg, cairo, lv2, pkgconfig }:
2019-10-29 18:32:16 +00:00
stdenv.mkDerivation rec {
pname = "BShapr";
2020-05-27 16:32:55 +00:00
version = "0.9";
2019-10-29 18:32:16 +00:00
src = fetchFromGitHub {
owner = "sjaehn";
repo = pname;
rev = "v${version}";
2020-05-27 16:32:55 +00:00
sha256 = "04zd3a178i2nivg5rjailzqvc5mlnilmhj1ziygmbhshbrywplri";
2019-10-29 18:32:16 +00:00
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [
xorg.libX11 cairo lv2
];
installFlags = [ "PREFIX=$(out)" ];
meta = with lib; {
homepage = "https://github.com/sjaehn/BShapr";
2019-10-29 18:32:16 +00:00
description = "Beat / envelope shaper LV2 plugin";
maintainers = [ maintainers.magnetophon ];
platforms = platforms.linux;
license = licenses.gpl3;
};
}