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

29 lines
695 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, xorg, cairo, lv2, pkg-config }:
2019-10-29 14:16:58 +00:00
stdenv.mkDerivation rec {
pname = "BSlizr";
2021-02-12 06:08:35 +00:00
version = "1.2.10";
2019-10-29 14:16:58 +00:00
src = fetchFromGitHub {
owner = "sjaehn";
repo = pname;
rev = version;
2021-02-12 06:08:35 +00:00
sha256 = "sha256-tEGJrVg8dN9Torybx02qIpXsGOuCgn/Wb+jemfCjiK4=";
2019-10-29 14:16:58 +00:00
};
nativeBuildInputs = [ pkg-config ];
2019-10-29 14:16:58 +00:00
buildInputs = [
xorg.libX11 cairo lv2
];
installFlags = [ "PREFIX=$(out)" ];
meta = with lib; {
2020-04-12 07:39:50 +01:00
homepage = "https://github.com/sjaehn/BSlizr";
2019-10-29 14:16:58 +00:00
description = "Sequenced audio slicing effect LV2 plugin (step sequencer effect)";
maintainers = [ maintainers.magnetophon ];
platforms = platforms.linux;
license = licenses.gpl3;
};
}