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

29 lines
687 B
Nix
Raw Normal View History

2019-10-29 19:38:19 +01:00
{ stdenv, fetchFromGitHub, xorg, cairo, lv2, pkgconfig }:
stdenv.mkDerivation rec {
pname = "BSEQuencer";
2020-07-09 02:30:36 +02:00
version = "1.6.0";
2019-10-29 19:38:19 +01:00
src = fetchFromGitHub {
owner = "sjaehn";
repo = pname;
2019-11-25 16:51:44 +01:00
rev = "${version}";
2020-07-09 02:30:36 +02:00
sha256 = "0w21kzq695xy4i1r6xvvh7sad5m0rlmdgc7ykmrlzfsm1252dz80";
2019-10-29 19:38:19 +01:00
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [
xorg.libX11 cairo lv2
];
installFlags = [ "PREFIX=$(out)" ];
meta = with stdenv.lib; {
homepage = "https://github.com/sjaehn/BSEQuencer";
2019-10-29 19:38:19 +01:00
description = "Multi channel MIDI step sequencer LV2 plugin";
maintainers = [ maintainers.magnetophon ];
platforms = platforms.linux;
license = licenses.gpl3;
};
}