anvil-editor: init at 0.4
[NixPkgs.git] / pkgs / applications / audio / qmidinet / default.nix
blobf6985abfbe3f85939e2012f1cb1eb52a13b13f0d
1 { mkDerivation, lib, fetchurl, pkg-config, qtbase, qttools, alsa-lib, libjack2 }:
3 mkDerivation rec {
4   version = "0.9.4";
5   pname = "qmidinet";
7   src = fetchurl {
8     url = "mirror://sourceforge/qmidinet/${pname}-${version}.tar.gz";
9     sha256 = "sha256-7Ui4kUgYgpPVAaaINrd6WGZoYon5UuHszGVaHafb/p0=";
10   };
12   hardeningDisable = [ "format" ];
14   buildInputs = [  qtbase qttools alsa-lib libjack2 ];
16   nativeBuildInputs = [ pkg-config ];
18   meta = with lib; {
19     description = "MIDI network gateway application that sends and receives MIDI data (ALSA Sequencer and/or JACK MIDI) over the network";
20     mainProgram = "qmidinet";
21     homepage = "http://qmidinet.sourceforge.net/";
22     license = licenses.gpl2Plus;
23     maintainers = [ maintainers.magnetophon ];
24     platforms = platforms.linux;
25   };