2021-06-10 03:57:09 +01:00
|
|
|
{ mkDerivation, lib, fetchurl, pkg-config, qtbase, qttools, alsa-lib, libjack2 }:
|
2015-05-22 09:39:45 +01:00
|
|
|
|
2020-01-10 01:49:38 +00:00
|
|
|
mkDerivation rec {
|
2021-03-09 10:28:33 +00:00
|
|
|
version = "0.9.1";
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "qmidinet";
|
2015-05-22 09:39:45 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 13:41:18 +01:00
|
|
|
url = "mirror://sourceforge/qmidinet/${pname}-${version}.tar.gz";
|
2021-03-09 10:28:33 +00:00
|
|
|
sha256 = "sha256-cDgF5hbjy5DzGn4Rlmb76XzRa2wURVwPu2rQRKENxQU=";
|
2015-05-22 09:39:45 +01:00
|
|
|
};
|
|
|
|
|
2016-02-26 17:38:15 +00:00
|
|
|
hardeningDisable = [ "format" ];
|
2016-02-08 23:15:13 +00:00
|
|
|
|
2021-06-10 03:57:09 +01:00
|
|
|
buildInputs = [ qtbase qttools alsa-lib libjack2 ];
|
2015-05-22 09:39:45 +01:00
|
|
|
|
2021-01-19 06:50:56 +00:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
2017-02-28 14:12:28 +00:00
|
|
|
|
2020-01-10 01:49:38 +00:00
|
|
|
meta = with lib; {
|
2015-05-22 09:39:45 +01: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 02:11:51 +01:00
|
|
|
homepage = "http://qmidinet.sourceforge.net/";
|
2015-05-22 09:39:45 +01:00
|
|
|
license = licenses.gpl2Plus;
|
|
|
|
maintainers = [ maintainers.magnetophon ];
|
2020-01-10 01:49:38 +00:00
|
|
|
platforms = platforms.linux;
|
2015-05-22 09:39:45 +01:00
|
|
|
};
|
|
|
|
}
|