biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / applications / audio / bsequencer / default.nix
blob00f99adf7bac29d423cd7f49160aa8d27d6c126d
1 { lib, stdenv, fetchFromGitHub, xorg, cairo, lv2, pkg-config }:
3 stdenv.mkDerivation rec {
4   pname = "bsequencer";
5   version = "1.8.10";
7   src = fetchFromGitHub {
8     owner = "sjaehn";
9     repo = "BSEQuencer";
10     rev = version;
11     sha256 = "sha256-1PSICm5mw37nO3gkHA9MNUH+CFULeOZURjimYEA/dXA=";
12   };
14   nativeBuildInputs = [ pkg-config ];
15   buildInputs = [
16     xorg.libX11 cairo lv2
17   ];
19   installFlags = [ "PREFIX=$(out)" ];
21   meta = with lib; {
22     homepage = "https://github.com/sjaehn/BSEQuencer";
23     description = "Multi channel MIDI step sequencer LV2 plugin";
24     maintainers = [ maintainers.magnetophon ];
25     platforms = platforms.linux;
26     license = licenses.gpl3;
27   };