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

29 lines
714 B
Nix
Raw Normal View History

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