3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/audio/bjumblr/default.nix

29 lines
720 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, libX11, cairo, lv2, pkg-config, libsndfile }:
2020-04-04 07:59:24 +01:00
stdenv.mkDerivation rec {
2021-06-05 09:17:38 +01:00
pname = "bjumblr";
2021-05-22 13:35:14 +01:00
version = "1.6.6";
2020-04-04 07:59:24 +01:00
src = fetchFromGitHub {
owner = "sjaehn";
2021-06-05 09:17:38 +01:00
repo = "BJumblr";
2020-08-01 14:11:35 +01:00
rev = version;
2021-05-22 13:35:14 +01:00
sha256 = "1nbxi54023vck3qgmr385cjzinmdnvz62ywb6bcksmc3shl080mg";
2020-04-04 07:59:24 +01:00
};
nativeBuildInputs = [ pkg-config ];
2020-04-04 07:59:24 +01:00
buildInputs = [
libX11 cairo lv2 libsndfile
];
installFlags = [ "PREFIX=$(out)" ];
meta = with lib; {
2020-04-04 07:59:24 +01: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;
};
}