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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

29 lines
719 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, libX11, cairo, lv2, pkg-config, libsndfile }:
2020-04-04 06:59:24 +00:00
stdenv.mkDerivation rec {
2021-06-05 08:17:38 +00:00
pname = "bjumblr";
2021-09-14 02:33:25 +00:00
version = "1.6.8";
2020-04-04 06:59:24 +00:00
src = fetchFromGitHub {
owner = "sjaehn";
2021-06-05 08:17:38 +00:00
repo = "BJumblr";
2020-08-01 13:11:35 +00:00
rev = version;
2021-09-14 02:33:25 +00:00
sha256 = "sha256-qSoGmWUGaMjx/bkiCJ/qb4LBbuFPXXlJ0e9hrFBXzwE=";
2020-04-04 06:59:24 +00:00
};
nativeBuildInputs = [ pkg-config ];
2020-04-04 06:59:24 +00:00
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;
};
}