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

26 lines
770 B
Nix
Raw Normal View History

{ mkDerivation, lib, fetchurl, pkgconfig, qtbase, qttools, alsaLib, libjack2 }:
mkDerivation rec {
2020-04-07 11:54:43 +00:00
version = "0.6.2";
pname = "qmidinet";
src = fetchurl {
url = "mirror://sourceforge/qmidinet/${pname}-${version}.tar.gz";
2020-04-07 11:54:43 +00:00
sha256 = "0siqzyhwg3l9av7jbca3bqdww7xspjlpi9ya4mkj211xc3a3a1d6";
};
hardeningDisable = [ "format" ];
2016-02-08 23:15:13 +00:00
buildInputs = [ qtbase qttools alsaLib libjack2 ];
2017-02-28 14:12:28 +00:00
nativeBuildInputs = [ pkgconfig ];
meta = with 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 = platforms.linux;
};
}