2020-01-10 02:49:38 +01:00
|
|
|
{ mkDerivation, lib, fetchurl, pkgconfig, qtbase, qttools, alsaLib, libjack2 }:
|
2015-05-22 10:39:45 +02:00
|
|
|
|
2020-01-10 02:49:38 +01:00
|
|
|
mkDerivation rec {
|
2020-04-07 13:54:43 +02:00
|
|
|
version = "0.6.2";
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "qmidinet";
|
2015-05-22 10:39:45 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 14:41:18 +02:00
|
|
|
url = "mirror://sourceforge/qmidinet/${pname}-${version}.tar.gz";
|
2020-04-07 13:54:43 +02:00
|
|
|
sha256 = "0siqzyhwg3l9av7jbca3bqdww7xspjlpi9ya4mkj211xc3a3a1d6";
|
2015-05-22 10:39:45 +02:00
|
|
|
};
|
|
|
|
|
2016-02-26 18:38:15 +01:00
|
|
|
hardeningDisable = [ "format" ];
|
2016-02-09 00:15:13 +01:00
|
|
|
|
2020-01-10 02:49:38 +01:00
|
|
|
buildInputs = [ qtbase qttools alsaLib libjack2 ];
|
2015-05-22 10:39:45 +02:00
|
|
|
|
2017-02-28 15:12:28 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
|
2020-01-10 02:49:38 +01:00
|
|
|
meta = with lib; {
|
2015-05-22 10:39:45 +02:00
|
|
|
description = "A MIDI network gateway application that sends and receives MIDI data (ALSA Sequencer and/or JACK MIDI) over the network";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "http://qmidinet.sourceforge.net/";
|
2015-05-22 10:39:45 +02:00
|
|
|
license = licenses.gpl2Plus;
|
|
|
|
maintainers = [ maintainers.magnetophon ];
|
2020-01-10 02:49:38 +01:00
|
|
|
platforms = platforms.linux;
|
2015-05-22 10:39:45 +02:00
|
|
|
};
|
|
|
|
}
|