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

26 lines
776 B
Nix
Raw Normal View History

2017-02-28 15:12:28 +01:00
{ stdenv, fetchurl, pkgconfig, qt5, alsaLib, libjack2 }:
stdenv.mkDerivation rec {
2017-12-19 09:10:53 +01:00
version = "0.5.0";
name = "qmidinet-${version}";
src = fetchurl {
url = "mirror://sourceforge/qmidinet/${name}.tar.gz";
2017-12-19 09:10:53 +01:00
sha256 = "0nxbvjgx11ljy1nxqknyq7pla55ky2ybi1jbisvq2cqxa34jsxf6";
};
hardeningDisable = [ "format" ];
2016-02-09 00:15:13 +01:00
2016-10-30 13:30:04 +01:00
buildInputs = [ qt5.qtbase qt5.qttools alsaLib libjack2 ];
2017-02-28 15:12:28 +01:00
nativeBuildInputs = [ pkgconfig ];
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;
};
}