summary refs log tree commit diff
path: root/pkgs/applications/audio/qmidiroute
diff options
context:
space:
mode:
authorAlexander Lebedev <lebastr@gmail.com>2015-08-27 18:57:01 +0000
committerAlexander Lebedev <lebastr@gmail.com>2015-08-27 19:00:08 +0000
commite96ee79006b2af363cd566e555f8383b9bfba47e (patch)
treea97d23e6337b011059f722a4c06f478b2f68e3a4 /pkgs/applications/audio/qmidiroute
parent150211741856f6292ebd9ea747f7fef725c84ebc (diff)
downloadnixpkgs-e96ee79006b2af363cd566e555f8383b9bfba47e.tar
nixpkgs-e96ee79006b2af363cd566e555f8383b9bfba47e.tar.gz
nixpkgs-e96ee79006b2af363cd566e555f8383b9bfba47e.tar.bz2
nixpkgs-e96ee79006b2af363cd566e555f8383b9bfba47e.tar.lz
nixpkgs-e96ee79006b2af363cd566e555f8383b9bfba47e.tar.xz
nixpkgs-e96ee79006b2af363cd566e555f8383b9bfba47e.tar.zst
nixpkgs-e96ee79006b2af363cd566e555f8383b9bfba47e.zip
qmidiroute: init at 0.3.0
Diffstat (limited to 'pkgs/applications/audio/qmidiroute')
-rw-r--r--pkgs/applications/audio/qmidiroute/default.nix29
1 files changed, 29 insertions, 0 deletions
diff --git a/pkgs/applications/audio/qmidiroute/default.nix b/pkgs/applications/audio/qmidiroute/default.nix
new file mode 100644
index 00000000000..badac0887a1
--- /dev/null
+++ b/pkgs/applications/audio/qmidiroute/default.nix
@@ -0,0 +1,29 @@
+{ stdenv, fetchurl, pkgconfig, qt4, alsaLib }:
+
+stdenv.mkDerivation rec {
+  version = "0.3.0";
+  name = "qmidiroute-${version}";
+
+  src = fetchurl {
+    url = "mirror://sourceforge/project/alsamodular/QMidiRoute/${version}/${name}.tar.gz";
+    sha256 = "11bfjz14z37v6hk2xyg4vrw423b5h3qgcbviv07g00ws1fgjygm2";
+  };
+
+  buildInputs = [ pkgconfig qt4 alsaLib ];
+
+  meta = with stdenv.lib; {
+    description = "MIDI event processor and router";
+    longDescription = ''
+    qmidiroute is a versatile MIDI event processor and router for the ALSA
+    sequencer.  The graphical  interface  is  based  on  the  Qt4  toolkit.
+    qmidiroute permits setting up an unlimited number of MIDI maps in which
+    incoming events are selected, modified or even changed in  type  before
+    being  directed  to  a  dedicated  ALSA  output  port. The maps work in
+    parallel, and they are organized in tabs.
+    '';
+
+    license = licenses.gpl2;
+    maintainers = [ maintainers.lebastr ];
+    platforms = stdenv.lib.platforms.linux;
+  };
+}