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

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

29 lines
698 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 {
2021-06-05 08:17:38 +00:00
pname = "bslizr";
2021-06-06 23:38:30 +00:00
version = "1.2.16";
2019-10-29 14:16:58 +00:00
src = fetchFromGitHub {
owner = "sjaehn";
2021-06-05 08:17:38 +00:00
repo = "BSlizr";
rev = version;
2021-06-06 23:38:30 +00:00
sha256 = "sha256-5DvVkTz79CLvZMZ3XnI0COIfxnhERDSvzbVoJAcqNRI=";
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 06:39:50 +00: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;
};
}