1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs synced 2024-10-19 03:47:13 -04:00
nixpkgs/pkgs/applications/audio/qmidinet/default.nix

26 lines
776 B
Nix
Raw Normal View History

2017-02-28 09:12:28 -05:00
{ stdenv, fetchurl, pkgconfig, qt5, alsaLib, libjack2 }:
stdenv.mkDerivation rec {
2017-02-28 09:12:28 -05:00
version = "0.4.2";
name = "qmidinet-${version}";
src = fetchurl {
url = "mirror://sourceforge/qmidinet/${name}.tar.gz";
2017-02-28 09:12:28 -05:00
sha256 = "1sdnd189db44xhl9p8pd8h4bsy8s0bn1y64lrdq7nb21mwg8ymcs";
};
hardeningDisable = [ "format" ];
2016-02-08 18:15:13 -05:00
2016-10-30 08:30:04 -04:00
buildInputs = [ qt5.qtbase qt5.qttools alsaLib libjack2 ];
2017-02-28 09:12:28 -05: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;
};
}