Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
59 lines
1.1 KiB
Nix
59 lines
1.1 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
autoreconfHook,
|
|
pkg-config,
|
|
qttools,
|
|
which,
|
|
alsa-lib,
|
|
libjack2,
|
|
liblo,
|
|
qtbase,
|
|
wrapQtAppsHook,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "seq66";
|
|
version = "0.99.21";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ahlstromcj";
|
|
repo = "seq66";
|
|
rev = version;
|
|
hash = "sha256-0joa69nSX3lcpoRq9YToNA75Sg9dlYMGRZEfcJm9Vjg=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
autoreconfHook
|
|
pkg-config
|
|
qttools
|
|
which
|
|
wrapQtAppsHook
|
|
];
|
|
|
|
buildInputs = [
|
|
alsa-lib
|
|
libjack2
|
|
liblo
|
|
qtbase
|
|
];
|
|
|
|
postPatch = ''
|
|
for d in libseq66/src libsessions/include libsessions/src seq_qt5/src seq_rtmidi/src; do
|
|
substituteInPlace "$d/Makefile.am" --replace-fail '$(git_info)' '${version}'
|
|
done
|
|
'';
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/ahlstromcj/seq66";
|
|
description = "Loop based midi sequencer with Qt GUI derived from seq24 and sequencer64";
|
|
license = licenses.gpl2Plus;
|
|
maintainers = with maintainers; [ orivej ];
|
|
mainProgram = "qseq66";
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|