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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

29 lines
670 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 {
2021-06-05 08:17:38 +00:00
pname = "bshapr";
2021-06-06 23:32:33 +00:00
version = "0.13";
2019-10-29 18:32:16 +00:00
src = fetchFromGitHub {
owner = "sjaehn";
2021-06-05 08:17:38 +00:00
repo = "BShapr";
2019-10-29 18:32:16 +00:00
rev = "v${version}";
2021-06-06 23:32:33 +00:00
sha256 = "sha256-9I4DPRl6i/VL8Etw3qLGZkP45BGsbxFxNOvRy3B3I+M=";
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;
};
}