3
5
Fork 0
mirror of git://git.savannah.gnu.org/guix.git synced 2023-12-14 03:33:07 +01:00

gnu: Add wolf-spectrum.

* gnu/packages/music.scm (wolf-spectrum): New variable.

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
Alexandros Theodotou 2020-04-08 17:30:45 +01:00 committed by Ludovic Courtès
parent 59be2959a6
commit b90b7f16ed
No known key found for this signature in database
GPG key ID: 090B11993D9AEBB5

View file

@ -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)))