Merge pull request #84241 from magnetophon/bjumblr

bjumblr: init at 0.2
This commit is contained in:
Anderson Torres 2020-05-16 00:44:23 -03:00 committed by GitHub
commit 33dd04ea4a
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, libX11, cairo, lv2, pkgconfig, libsndfile }:
stdenv.mkDerivation rec {
pname = "BJumblr";
version = "0.2";
src = fetchFromGitHub {
owner = "sjaehn";
repo = pname;
rev = "v${version}";
sha256 = "14z8113zkwykbhm1a8h2xs972dgifvlfij92b08jckyc7cbz84ys";
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [
libX11 cairo lv2 libsndfile
];
installFlags = [ "PREFIX=$(out)" ];
meta = with stdenv.lib; {
homepage = "https://github.com/sjaehn/BJumblr";
description = "Pattern-controlled audio stream / sample re-sequencer LV2 plugin";
maintainers = [ maintainers.magnetophon ];
platforms = platforms.linux;
license = licenses.gpl3;
};
}

View File

@ -18763,6 +18763,8 @@ in
bs1770gain = callPackage ../applications/audio/bs1770gain { };
bjumblr = callPackage ../applications/audio/bjumblr { };
bsequencer = callPackage ../applications/audio/bsequencer { };
bslizr = callPackage ../applications/audio/bslizr { };