guix-commits
[Top][All Lists]
Advanced

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

20/21: gnu: Add bsequencer.


From: guix-commits
Subject: 20/21: gnu: Add bsequencer.
Date: Mon, 25 Nov 2019 08:05:52 -0500 (EST)

rekado pushed a commit to branch master
in repository guix.

commit ea2884c12ce089392c01b63f84e29a4ebaa0e16b
Author: Ricardo Wurmus <address@hidden>
Date:   Mon Nov 25 00:09:15 2019 +0100

    gnu: Add bsequencer.
    
    * gnu/packages/music.scm (bsequencer): New variable.
---
 gnu/packages/music.scm | 34 ++++++++++++++++++++++++++++++++++
 1 file changed, 34 insertions(+)

diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm
index 2c3b2ff..30c2ddd 100644
--- a/gnu/packages/music.scm
+++ b/gnu/packages/music.scm
@@ -1128,6 +1128,40 @@ be used alone or in concert with Non Mixer and Non 
Sequencer to form a
 complete studio.")
     (license license:gpl2+)))
 
+(define-public bsequencer
+  (package
+    (name "bsequencer")
+    (version "1.2.0")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://github.com/sjaehn/BSEQuencer.git";)
+                    (commit version)))
+              (file-name (git-file-name name version))
+              (sha256
+               (base32
+                "08xwz5v8wrar0rx7qdr9pkpjz2k9sw6bn5glhpn6sp6453fabf8q"))))
+    (build-system gnu-build-system)
+    (arguments
+     `(#:make-flags
+       (list (string-append "PREFIX=" (assoc-ref %outputs "out")))
+       #:tests? #f ; there are none
+       #:phases
+       (modify-phases %standard-phases
+         (delete 'configure))))
+    (inputs
+     `(("cairo" ,cairo)
+       ("lv2" ,lv2)
+       ("libx11" ,libx11)))
+    (native-inputs
+     `(("pkg-config" ,pkg-config)))
+    (home-page "https://github.com/sjaehn/BSEQuencer";)
+    (synopsis "Multi-channel MIDI step sequencer LV2 plugin")
+    (description
+     "This package provides a multi-channel MIDI step sequencer LV2 plugin
+with a selectable pattern matrix size.")
+    (license license:gpl3+)))
+
 (define-public solfege
   (package
     (name "solfege")



reply via email to

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