Merge pull request #72256 from magnetophon/bslizr

bslizr: init at 1.2.0
This commit is contained in:
Mario Rodas 2019-10-30 09:25:01 -05:00 committed by GitHub
commit 57c922972a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 30 additions and 0 deletions

View file

@ -0,0 +1,28 @@
{ stdenv, fetchFromGitHub, xorg, cairo, lv2, pkgconfig }:
stdenv.mkDerivation rec {
pname = "BSlizr";
version = "1.2.0";
src = fetchFromGitHub {
owner = "sjaehn";
repo = pname;
rev = "${version}";
sha256 = "1xqhpppfj47nzmyksbqgfvvi5j807g96hqla544w2f752zz4yi0s";
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [
xorg.libX11 cairo lv2
];
installFlags = [ "PREFIX=$(out)" ];
meta = with stdenv.lib; {
homepage = https://github.com/sjaehn/BSlizr;
description = "Sequenced audio slicing effect LV2 plugin (step sequencer effect)";
maintainers = [ maintainers.magnetophon ];
platforms = platforms.linux;
license = licenses.gpl3;
};
}

View file

@ -17837,6 +17837,8 @@ in
bs1770gain = callPackage ../applications/audio/bs1770gain { };
bslizr = callPackage ../applications/audio/bslizr { };
bspwm = callPackage ../applications/window-managers/bspwm { };
btops = callPackage ../applications/window-managers/btops { };