50a49047e1
Without the change `qseq66` fails to load as: $ qseq66 qt.qpa.plugin: Could not find the Qt platform plugin "xcb" in "" This application failed to start because no Qt platform plugin could be initialized. Reinstalling the application may fix this problem. While at it added `mainProgram`.
40 lines
1.2 KiB
Nix
40 lines
1.2 KiB
Nix
{ lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config, qttools, which
|
|
, alsa-lib, libjack2, liblo, qtbase, wrapQtAppsHook
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "seq66";
|
|
version = "0.90.5";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ahlstromcj";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "1jvra1wzlycfpvffnqidk264zw6fyl4fsghkw5256ldk22aalmq9";
|
|
};
|
|
|
|
nativeBuildInputs = [ autoreconfHook pkg-config qttools which wrapQtAppsHook ];
|
|
|
|
buildInputs = [ alsa-lib libjack2 liblo qtbase ];
|
|
|
|
postPatch = ''
|
|
for d in libseq66/include libseq66/src libsessions/include libsessions/src seq_qt5/src seq_rtmidi/include seq_rtmidi/src Seqtool/src; do
|
|
substituteInPlace "$d/Makefile.am" --replace '$(git_info)' '${version}'
|
|
done
|
|
|
|
# gcc-13 headers compatibilty. TODO: try to remove with next version
|
|
# update
|
|
sed -e '1i #include <cstdint>' -i libseq66/src/os/daemonize.cpp
|
|
'';
|
|
|
|
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;
|
|
};
|
|
}
|