From b11186a6369106d712149522c8a2f18ca5811cf6 Mon Sep 17 00:00:00 2001 From: Bjørn Forsman Date: Sun, 22 May 2016 18:04:31 +0200 Subject: qmidinet: use lower case package name Rename the attribute name and the package directory according to Nix naming style. --- pkgs/applications/audio/qmidinet/default.nix | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 pkgs/applications/audio/qmidinet/default.nix (limited to 'pkgs/applications/audio/qmidinet') diff --git a/pkgs/applications/audio/qmidinet/default.nix b/pkgs/applications/audio/qmidinet/default.nix new file mode 100644 index 000000000000..d8d8945db928 --- /dev/null +++ b/pkgs/applications/audio/qmidinet/default.nix @@ -0,0 +1,21 @@ +{ stdenv, fetchurl, qt4, alsaLib, libjack2 }: + +stdenv.mkDerivation rec { + version = "0.2.1"; + name = "qmidinet-${version}"; + + src = fetchurl { + url = "mirror://sourceforge/qmidinet/${name}.tar.gz"; + sha256 = "1a1pj4w74wj1gcfv4a0vzcglmr5sw0xp0y56w8rk3ig4k11xi8sa"; + }; + + buildInputs = [ qt4 alsaLib libjack2 ]; + + 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; + }; +} -- cgit 1.4.1