mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
755b915a15
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
49 lines
1,002 B
Nix
49 lines
1,002 B
Nix
{ lib, stdenv
|
|
, fetchgit
|
|
, autoreconfHook
|
|
, lv2
|
|
, pkg-config
|
|
, qt5
|
|
, alsa-lib
|
|
, libjack2
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "qmidiarp";
|
|
version = "0.7.0";
|
|
|
|
src = fetchgit {
|
|
url = "https://git.code.sf.net/p/qmidiarp/code";
|
|
sha256 = "sha256-oUdgff2xsXTis+C2Blv0tspWNIMGSODrKxWDpMDYnEU=";
|
|
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 ];
|
|
};
|
|
}
|