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

26 lines
771 B
Nix
Raw Normal View History

{ mkDerivation, lib, fetchurl, pkg-config, qtbase, qttools, alsaLib, libjack2 }:
mkDerivation rec {
2021-03-09 10:28:33 +00:00
version = "0.9.1";
pname = "qmidinet";
src = fetchurl {
url = "mirror://sourceforge/qmidinet/${pname}-${version}.tar.gz";
2021-03-09 10:28:33 +00:00
sha256 = "sha256-cDgF5hbjy5DzGn4Rlmb76XzRa2wURVwPu2rQRKENxQU=";
};
hardeningDisable = [ "format" ];
2016-02-08 23:15:13 +00:00
buildInputs = [ qtbase qttools alsaLib libjack2 ];
nativeBuildInputs = [ pkg-config ];
2017-02-28 14:12:28 +00:00
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;
};
}