mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
fd28401845
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.2";
|
|
name = "qmidinet-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/qmidinet/${name}.tar.gz";
|
|
sha256 = "0y2w3rymvc35r291sp2qaxn36wjwvxzk2iaw9y30q9fqc0vlpdns";
|
|
};
|
|
|
|
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;
|
|
};
|
|
}
|