53 lines
1 KiB
Nix
53 lines
1 KiB
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 ];
|
|
};
|
|
}
|