2021-01-19 06:50:56 +00:00
|
|
|
{ lib, stdenv, fetchurl, pkg-config, qt4, alsaLib }:
|
2015-08-27 19:57:01 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2018-02-27 20:56:05 +00:00
|
|
|
version = "0.4.0";
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "qmidiroute";
|
2015-08-27 19:57:01 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 13:41:18 +01:00
|
|
|
url = "mirror://sourceforge/project/alsamodular/QMidiRoute/${version}/${pname}-${version}.tar.gz";
|
2018-02-27 20:56:05 +00:00
|
|
|
sha256 = "0vmjwarsxr5540rafhmdcc62yarf0w2l05bjjl9s28zzr5m39z3n";
|
2015-08-27 19:57:01 +01:00
|
|
|
};
|
|
|
|
|
2021-01-19 06:50:56 +00:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
2017-09-05 22:26:13 +01:00
|
|
|
buildInputs = [ qt4 alsaLib ];
|
2015-08-27 19:57:01 +01:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2015-08-27 19:57:01 +01:00
|
|
|
description = "MIDI event processor and router";
|
|
|
|
longDescription = ''
|
|
|
|
qmidiroute is a versatile MIDI event processor and router for the ALSA
|
|
|
|
sequencer. The graphical interface is based on the Qt4 toolkit.
|
|
|
|
qmidiroute permits setting up an unlimited number of MIDI maps in which
|
|
|
|
incoming events are selected, modified or even changed in type before
|
|
|
|
being directed to a dedicated ALSA output port. The maps work in
|
|
|
|
parallel, and they are organized in tabs.
|
|
|
|
'';
|
|
|
|
|
|
|
|
license = licenses.gpl2;
|
|
|
|
maintainers = [ maintainers.lebastr ];
|
2021-01-15 13:21:58 +00:00
|
|
|
platforms = lib.platforms.linux;
|
2015-08-27 19:57:01 +01:00
|
|
|
};
|
|
|
|
}
|