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
53 lines
1016 B
Nix
53 lines
1016 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchgit,
|
|
autoreconfHook,
|
|
lv2,
|
|
pkg-config,
|
|
qt5,
|
|
alsa-lib,
|
|
libjack2,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "qmidiarp";
|
|
version = "0.7.1";
|
|
|
|
src = fetchgit {
|
|
url = "https://git.code.sf.net/p/qmidiarp/code";
|
|
sha256 = "sha256-xTDI1QtgOOMexzFKvYWhlfpXv8uXaoD4o+G6XF8/Cw8=";
|
|
rev = "qmidiarp-${version}";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
autoreconfHook
|
|
pkg-config
|
|
qt5.wrapQtAppsHook
|
|
];
|
|
|
|
buildInputs = [
|
|
alsa-lib
|
|
lv2
|
|
libjack2
|
|
]
|
|
++ (with qt5; [
|
|
qttools
|
|
]);
|
|
|
|
meta = with lib; {
|
|
description = "Advanced MIDI arpeggiator";
|
|
mainProgram = "qmidiarp";
|
|
longDescription = ''
|
|
An advanced MIDI arpeggiator, programmable step sequencer and LFO for Linux.
|
|
It can hold any number of arpeggiator, sequencer, or LFO modules running in
|
|
parallel.
|
|
'';
|
|
|
|
homepage = "https://qmidiarp.sourceforge.net";
|
|
license = licenses.gpl2;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ sjfloat ];
|
|
};
|
|
}
|