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

29 lines
667 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, xorg, cairo, lv2, pkg-config }:
2019-10-29 18:32:16 +00:00
stdenv.mkDerivation rec {
pname = "BShapr";
2021-02-12 05:47:37 +00:00
version = "0.10";
2019-10-29 18:32:16 +00:00
src = fetchFromGitHub {
owner = "sjaehn";
repo = pname;
rev = "v${version}";
2021-02-12 05:47:37 +00:00
sha256 = "sha256-oEBsaIcw/Ltxr2CUPGBjwcxOPhNQoYPZDkfQE7QA940=";
2019-10-29 18:32:16 +00:00
};
nativeBuildInputs = [ pkg-config ];
2019-10-29 18:32:16 +00:00
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;
};
}