nixpkgs/pkgs/applications/audio/qmidiarp/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

50 lines
986 B
Nix
Raw Normal View History

{ lib, stdenv
2020-03-17 00:14:53 +01:00
, fetchgit
, automake
, autoreconfHook
, lv2
, pkg-config
, qt5
, alsa-lib
2020-03-17 00:14:53 +01:00
, libjack2
}:
stdenv.mkDerivation rec {
2022-03-22 17:57:23 +01:00
pname = "qmidiarp";
2020-03-17 00:14:53 +01:00
version = "0.6.5";
src = fetchgit {
url = "https://git.code.sf.net/p/qmidiarp/code";
sha256 = "1g2143gzfbihqr2zi3k2v1yn1x3mwfbb2khmcd4m4cq3hcwhhlx9";
2022-03-22 17:57:23 +01:00
rev = "qmidiarp-${version}";
2020-03-17 00:14:53 +01:00
};
nativeBuildInputs = [
autoreconfHook
pkg-config
qt5.wrapQtAppsHook
];
buildInputs = [
alsa-lib
2020-03-17 00:14:53 +01:00
lv2
libjack2
] ++ (with qt5; [
qttools
]);
meta = with lib; {
2020-03-17 00:14:53 +01: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.
'';
homepage = "http://qmidiarp.sourceforge.net";
license = licenses.gpl2;
platforms = platforms.linux;
maintainers = with maintainers; [ sjfloat ];
};
}