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

29 lines
681 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, xorg, cairo, lv2, pkg-config }:
2019-10-29 18:38:19 +00:00
stdenv.mkDerivation rec {
pname = "BSEQuencer";
2021-02-12 05:57:22 +00:00
version = "1.8.6";
2019-10-29 18:38:19 +00:00
src = fetchFromGitHub {
owner = "sjaehn";
repo = pname;
rev = version;
2021-02-12 05:57:22 +00:00
sha256 = "sha256-PZ2Ft7y2mbb5Wpa7mWPys2BVpcQC3WE5rKu2sRqkf8w=";
2019-10-29 18:38:19 +00:00
};
nativeBuildInputs = [ pkg-config ];
2019-10-29 18:38:19 +00:00
buildInputs = [
xorg.libX11 cairo lv2
];
installFlags = [ "PREFIX=$(out)" ];
meta = with lib; {
homepage = "https://github.com/sjaehn/BSEQuencer";
2019-10-29 18:38:19 +00:00
description = "Multi channel MIDI step sequencer LV2 plugin";
maintainers = [ maintainers.magnetophon ];
platforms = platforms.linux;
license = licenses.gpl3;
};
}