2015-06-27 09:17:52 +02:00
|
|
|
{ stdenv, fetchurl, qt4, alsaLib, libjack2 }:
|
2015-05-22 10:39:45 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
version = "0.2.1";
|
|
|
|
name = "qmidinet-${version}";
|
|
|
|
|
|
|
|
src = fetchurl {
|
2016-02-28 13:07:42 +01:00
|
|
|
url = "mirror://sourceforge/qmidinet/${name}.tar.gz";
|
2015-05-22 10:39:45 +02:00
|
|
|
sha256 = "1a1pj4w74wj1gcfv4a0vzcglmr5sw0xp0y56w8rk3ig4k11xi8sa";
|
|
|
|
};
|
|
|
|
|
2016-02-26 18:38:15 +01:00
|
|
|
hardeningDisable = [ "format" ];
|
2016-02-09 00:15:13 +01:00
|
|
|
|
2015-06-27 09:17:52 +02:00
|
|
|
buildInputs = [ qt4 alsaLib libjack2 ];
|
2015-05-22 10:39:45 +02:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "A MIDI network gateway application that sends and receives MIDI data (ALSA Sequencer and/or JACK MIDI) over the network";
|
|
|
|
homepage = http://qmidinet.sourceforge.net/;
|
|
|
|
license = licenses.gpl2Plus;
|
|
|
|
maintainers = [ maintainers.magnetophon ];
|
|
|
|
platforms = stdenv.lib.platforms.linux;
|
|
|
|
};
|
|
|
|
}
|