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

29 lines
716 B
Nix
Raw Normal View History

2020-04-04 06:59:24 +00:00
{ stdenv, fetchFromGitHub, libX11, cairo, lv2, pkgconfig, libsndfile }:
stdenv.mkDerivation rec {
pname = "BJumblr";
2020-08-01 13:11:35 +00:00
version = "1.4.0";
2020-04-04 06:59:24 +00:00
src = fetchFromGitHub {
owner = "sjaehn";
repo = pname;
2020-08-01 13:11:35 +00:00
rev = version;
sha256 = "03x1gvri9yk000fvvc8zvvywf38cc41vkyhhp9xby71b23n5wbn0";
2020-04-04 06:59:24 +00:00
};
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;
};
}