mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
55f2889bae
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. These checks were done: - built on NixOS - Warning: no invocation of /nix/store/35mfmy2vrhd1535lbpfdz00mfpcc3rpi-qmidinet-0.5.1/bin/qmidinet had a zero exit code or showed the expected version - 0 of 1 passed binary check by having a zero exit code. - 0 of 1 passed binary check by having the new version present in output. - found 0.5.1 with grep in /nix/store/35mfmy2vrhd1535lbpfdz00mfpcc3rpi-qmidinet-0.5.1 - directory tree listing: https://gist.github.com/899bb536df375d3d1430d5c4883c0429 - du listing: https://gist.github.com/9492519fd9c0cb3b24bfda691ddb03ba
26 lines
776 B
Nix
26 lines
776 B
Nix
{ stdenv, fetchurl, pkgconfig, qt5, alsaLib, libjack2 }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "0.5.1";
|
|
name = "qmidinet-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/qmidinet/${name}.tar.gz";
|
|
sha256 = "1cvz8y63vdqfpxh7lq5qadqjcyhahbyq0py0qz6xrmpk5sxvy7ml";
|
|
};
|
|
|
|
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;
|
|
};
|
|
}
|