2021-01-19 07:50:56 +01:00
|
|
|
{ lib, stdenv, fetchFromGitHub, libX11, cairo, lv2, pkg-config, libsndfile }:
|
2020-04-04 08:59:24 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "BJumblr";
|
2020-08-29 03:40:03 +02:00
|
|
|
version = "1.4.2";
|
2020-04-04 08:59:24 +02:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "sjaehn";
|
|
|
|
repo = pname;
|
2020-08-01 15:11:35 +02:00
|
|
|
rev = version;
|
2020-08-29 03:40:03 +02:00
|
|
|
sha256 = "0kl6hrxmqrdf0195bfnzsa2h1073fgiqrfhg2276fm1954sm994v";
|
2020-04-04 08:59:24 +02:00
|
|
|
};
|
|
|
|
|
2021-01-19 07:50:56 +01:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
2020-04-04 08:59:24 +02:00
|
|
|
buildInputs = [
|
|
|
|
libX11 cairo lv2 libsndfile
|
|
|
|
];
|
|
|
|
|
|
|
|
installFlags = [ "PREFIX=$(out)" ];
|
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2020-04-04 08:59:24 +02:00
|
|
|
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;
|
|
|
|
};
|
|
|
|
}
|