guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

01/01: gnu: Add non-session-manager.


From: Ricardo Wurmus
Subject: 01/01: gnu: Add non-session-manager.
Date: Tue, 29 Nov 2016 09:59:35 +0000 (UTC)

rekado pushed a commit to branch master
in repository guix.

commit ded69d6f8699f901472616c8b34ce7b59ec4b9fa
Author: Ricardo Wurmus <address@hidden>
Date:   Mon Nov 28 22:02:09 2016 +0100

    gnu: Add non-session-manager.
    
    * gnu/packages/music.scm (non-session-manager): New variable.
---
 gnu/packages/music.scm |   22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)

diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm
index 3c56d19..e6d87e8 100644
--- a/gnu/packages/music.scm
+++ b/gnu/packages/music.scm
@@ -639,6 +639,28 @@ Sequencer happens on-line, in real-time.  Music can be 
composed live, while the
 transport is rolling.")
       (license license:gpl2+))))
 
+(define-public non-session-manager
+  (package (inherit non-sequencer)
+    (name "non-session-manager")
+    (arguments
+     (substitute-keyword-arguments (package-arguments non-sequencer)
+       ((#:configure-flags flags)
+        `(cons "--project=session-manager"
+               (delete "--project=sequencer" ,flags)))))
+    (inputs
+     `(("jack" ,jack-1)
+       ("liblo" ,liblo)
+       ("ntk" ,ntk)))
+    (native-inputs
+     `(("pkg-config" ,pkg-config)))
+    (home-page "http://non.tuxfamily.org/nsm/";)
+    (synopsis "Audio session management")
+    (description
+     "The Non Session Manager is an API and an implementation for audio
+session management.  NSM clients use a well-specified OSC protocol to
+communicate with the session management daemon.")
+    (license license:gpl2+)))
+
 (define-public solfege
   (package
     (name "solfege")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]