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 {
version = "0.5.1";
name = "qmidinet-${version}";
src = fetchurl {
url = "mirror://sourceforge/qmidinet/${name}.tar.gz";
sha256 = "1cvz8y63vdqfpxh7lq5qadqjcyhahbyq0py0qz6xrmpk5sxvy7ml";
};
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;
};
}