2021-01-15 22:18:51 +00:00
|
|
|
{ lib, stdenv
|
2020-04-24 23:36:52 +00:00
|
|
|
, fetchgit
|
|
|
|
, autoreconfHook
|
|
|
|
, lv2
|
|
|
|
, pkg-config
|
|
|
|
, qt5
|
2021-06-28 23:13:55 +00:00
|
|
|
, alsa-lib
|
2020-04-24 23:36:52 +00:00
|
|
|
, libjack2
|
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2022-03-30 09:31:56 +00:00
|
|
|
pname = "qmidiarp";
|
2023-07-15 17:15:38 +00:00
|
|
|
version = "0.7.0";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchgit {
|
|
|
|
url = "https://git.code.sf.net/p/qmidiarp/code";
|
2023-07-15 17:15:38 +00:00
|
|
|
sha256 = "sha256-oUdgff2xsXTis+C2Blv0tspWNIMGSODrKxWDpMDYnEU=";
|
2022-03-30 09:31:56 +00:00
|
|
|
rev = "qmidiarp-${version}";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [
|
|
|
|
autoreconfHook
|
|
|
|
pkg-config
|
|
|
|
qt5.wrapQtAppsHook
|
|
|
|
];
|
|
|
|
|
|
|
|
buildInputs = [
|
2021-06-28 23:13:55 +00:00
|
|
|
alsa-lib
|
2020-04-24 23:36:52 +00:00
|
|
|
lv2
|
|
|
|
libjack2
|
|
|
|
] ++ (with qt5; [
|
|
|
|
qttools
|
|
|
|
]);
|
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +00:00
|
|
|
description = "An advanced MIDI arpeggiator";
|
|
|
|
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.
|
|
|
|
'';
|
|
|
|
|
2023-02-22 10:55:15 +00:00
|
|
|
homepage = "https://qmidiarp.sourceforge.net";
|
2020-04-24 23:36:52 +00:00
|
|
|
license = licenses.gpl2;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = with maintainers; [ sjfloat ];
|
|
|
|
};
|
|
|
|
}
|