1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-12 07:34:36 +00:00
nixpkgs/pkgs/applications/audio/bshapr/default.nix

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 09:17:38 +01:00
pname = "bshapr";
2021-06-07 00:32:33 +01:00
version = "0.13";
2019-10-29 18:32:16 +00:00
src = fetchFromGitHub {
owner = "sjaehn";
2021-06-05 09:17:38 +01:00
repo = "BShapr";
2019-10-29 18:32:16 +00:00
rev = "v${version}";
2021-06-07 00:32:33 +01: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;
};
}