6f69939c9a
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/qmidinet/versions
26 lines
776 B
Nix
26 lines
776 B
Nix
{ stdenv, fetchurl, pkgconfig, qt5, alsaLib, libjack2 }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "0.5.4";
|
|
name = "qmidinet-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/qmidinet/${name}.tar.gz";
|
|
sha256 = "1il4b8v3azb33yg4fy78npi56xlkz4n60f17sgvckyxb2yj57jwq";
|
|
};
|
|
|
|
hardeningDisable = [ "format" ];
|
|
|
|
buildInputs = [ qt5.qtbase qt5.qttools alsaLib libjack2 ];
|
|
|
|
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;
|
|
};
|
|
}
|