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

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

29 lines
689 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 {
2021-06-05 09:17:38 +01:00
pname = "bsequencer";
2021-09-14 04:03:42 +01:00
version = "1.8.10";
2019-10-29 18:38:19 +00:00
src = fetchFromGitHub {
owner = "sjaehn";
2021-06-05 09:17:38 +01:00
repo = "BSEQuencer";
rev = version;
2021-09-14 04:03:42 +01:00
sha256 = "sha256-1PSICm5mw37nO3gkHA9MNUH+CFULeOZURjimYEA/dXA=";
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;
};
}