Skip to content

Commit

Permalink
Merge pull request #84241 from magnetophon/bjumblr
Browse files Browse the repository at this point in the history
bjumblr: init at 0.2
  • Loading branch information
AndersonTorres committed May 16, 2020
2 parents 8226394 + f2402e5 commit 33dd04e
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 0 deletions.
28 changes: 28 additions & 0 deletions pkgs/applications/audio/bjumblr/default.nix
@@ -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;
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Expand Up @@ -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 { };
Expand Down

0 comments on commit 33dd04e

Please sign in to comment.