Merge pull request #72256 from magnetophon/bslizr
bslizr: init at 1.2.0
This commit is contained in:
commit
57c922972a
2 changed files with 30 additions and 0 deletions
28
pkgs/applications/audio/bslizr/default.nix
Normal file
28
pkgs/applications/audio/bslizr/default.nix
Normal 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;
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue