diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2017-11-17 20:32:20 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2017-11-17 22:36:26 +0100 |
commit | ff49437df7a4774e6914c14e42c569754f839524 (patch) | |
tree | 079e0478d237745a6df37056d80e86c68b59b005 | |
parent | fc8d6953e202e94ad5b9e46a179d34a15a3075d3 (diff) | |
download | patches-ff49437df7a4774e6914c14e42c569754f839524.tar patches-ff49437df7a4774e6914c14e42c569754f839524.tar.gz |
gnu: Add qmidiroute.
* gnu/packages/music.scm (qmidiroute): New variable.
-rw-r--r-- | gnu/packages/music.scm | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm index 04a1c934a5..b83652657a 100644 --- a/gnu/packages/music.scm +++ b/gnu/packages/music.scm @@ -2925,6 +2925,36 @@ sequencer and LFO. It can hold any number of arpeggiator, sequencer, or LFO modules running in parallel.") (license license:gpl2+))) +(define-public qmidiroute + (package + (name "qmidiroute") + (version "0.4.0") + (source (origin + (method url-fetch) + (uri (string-append "mirror://sourceforge/alsamodular/QMidiRoute/" + version "/qmidiroute-" version ".tar.bz2")) + (sha256 + (base32 + "19v1ppbglgl3z9v7xdqc0k33w71cqq8a7d6ihvfs7iz77dygrih9")))) + (build-system gnu-build-system) + (arguments + `(#:configure-flags + (list "--enable-qt5" + "CXXFLAGS=-std=gnu++11"))) + (inputs + `(("qtbase" ,qtbase) + ("alsa-lib" ,alsa-lib))) + (native-inputs + `(("pkg-config" ,pkg-config) + ("qttools" ,qttools))) + (home-page "http://alsamodular.sourceforge.net/") + (synopsis "MIDI event router and filter") + (description "QMidiRoute is a MIDI event router and filter. MIDI note, +control change, program change and pitch bend events are logged, and can be +filtered, redirected and transformed into other events according to MIDI maps +defined as tabs in the main control surface.") + (license license:gpl2+))) + (define-public seq24 (package (name "seq24") |