mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-09-13 02:39:58 +00:00
39 lines
732 B
Nix
39 lines
732 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
libx11,
|
|
cairo,
|
|
lv2,
|
|
pkg-config,
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "bsequencer";
|
|
version = "1.8.10";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "sjaehn";
|
|
repo = "BSEQuencer";
|
|
tag = finalAttrs.version;
|
|
sha256 = "sha256-1PSICm5mw37nO3gkHA9MNUH+CFULeOZURjimYEA/dXA=";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
buildInputs = [
|
|
libx11
|
|
cairo
|
|
lv2
|
|
];
|
|
|
|
installFlags = [ "PREFIX=$(out)" ];
|
|
|
|
meta = {
|
|
homepage = "https://github.com/sjaehn/BSEQuencer";
|
|
description = "Multi channel MIDI step sequencer LV2 plugin";
|
|
maintainers = [ lib.maintainers.magnetophon ];
|
|
platforms = lib.platforms.linux;
|
|
license = lib.licenses.gpl3;
|
|
};
|
|
})
|