guix-commits
[Top][All Lists]
Advanced

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

05/05: gnu: Add wolf-spectrum.


From: guix-commits
Subject: 05/05: gnu: Add wolf-spectrum.
Date: Thu, 23 Apr 2020 17:59:41 -0400 (EDT)

civodul pushed a commit to branch master
in repository guix.

commit b90b7f16edea92e3554c4563d376292f5fb525cb
Author: Alexandros Theodotou <address@hidden>
AuthorDate: Wed Apr 8 17:30:45 2020 +0100

    gnu: Add wolf-spectrum.
    
    * gnu/packages/music.scm (wolf-spectrum): New variable.
    
    Signed-off-by: Ludovic Courtès <address@hidden>
---
 gnu/packages/music.scm | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)

diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm
index 1e44fe2..34d4adb 100644
--- a/gnu/packages/music.scm
+++ b/gnu/packages/music.scm
@@ -5480,3 +5480,26 @@ plugin and a standalone JACK application.")
 It is provided as an LV2 plugin and as a standalone Jack application.")
     (home-page "https://pdesaulniers.github.io/wolf-shaper/";)
     (license license:gpl3)))
+
+(define-public wolf-spectrum
+  (package
+    (inherit wolf-shaper)
+    (name "wolf-spectrum")
+    (version "1.0.0")
+    (source
+      (origin
+        (method git-fetch)
+        (uri (git-reference
+               (url "https://github.com/pdesaulniers/wolf-spectrum";)
+               (commit (string-append "v" version))
+               ;; Bundles a specific commit of the DISTRHO plugin framework.
+               (recursive? #t)))
+        (file-name (git-file-name name version))
+        (sha256
+          (base32
+            "17db1jlj7vb1xyvkdhhrsvdbwb7jqw6i4168cdvlj3yvn2ra8gpm"))))
+    (synopsis "2D spectrogram plugin")
+    (description "Wolf Spectrum is a real-time 2D spectrogram plugin.
+It is provided as an LV2 plugin and as a standalone Jack application.")
+    (home-page "https://github.com/pdesaulniers/wolf-spectrum";)
+    (license license:gpl3)))



reply via email to

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