diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2016-03-10 09:20:41 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2016-03-17 08:25:21 +0100 |
commit | 5e3161d38e81b9905008531cc30de69414e24389 (patch) | |
tree | 3d04bb242114b9d6d08cadf300f8c1e6d1aaf794 /gnu/packages/audio.scm | |
parent | c04b4e7aea1563d0a944f4592aea48f5faf03419 (diff) | |
download | guix-5e3161d38e81b9905008531cc30de69414e24389.tar guix-5e3161d38e81b9905008531cc30de69414e24389.tar.gz |
gnu: Add WAH plugins.
* gnu/packages/audio.scm (wah-plugins): New variable.
Diffstat (limited to 'gnu/packages/audio.scm')
-rw-r--r-- | gnu/packages/audio.scm | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm index b902e0b37e..ca438f8077 100644 --- a/gnu/packages/audio.scm +++ b/gnu/packages/audio.scm @@ -648,6 +648,42 @@ All oscillators are low-pass filtered to provide waveforms similar to the output of analog synthesizers such as the Moog Voyager.") (license license:gpl2+))) +(define-public wah-plugins + (package + (name "wah-plugins") + (version "0.1.0") + (source (origin + (method url-fetch) + (uri (string-append + "http://kokkinizita.linuxaudio.org" + "/linuxaudio/downloads/WAH-plugins-" + version ".tar.bz2")) + (sha256 + (base32 + "1wkbjarxdhjixkh7d5abralj11dj2xxg644fz3ycd7qyfgfvjfgd")))) + (build-system gnu-build-system) + (arguments + `(#:tests? #f ; no "check" target + #:phases + (modify-phases %standard-phases + ;; no configure script + (delete 'configure) + (add-before 'install 'prepare-target-directory + (lambda* (#:key outputs #:allow-other-keys) + (mkdir-p (string-append (assoc-ref outputs "out") "/lib/ladspa")) + #t)) + (add-after 'unpack 'override-target-directory + (lambda* (#:key outputs #:allow-other-keys) + (substitute* "Makefile" + (("/usr") (assoc-ref outputs "out"))) + #t))))) + (home-page "http://kokkinizita.linuxaudio.org") + (synopsis "LADSPA Autowah effect plugin") + (description + "This package provides a LADSPA plugin for a Wah effect with envelope +follower.") + (license license:gpl2+))) + (define-public g2reverb (package (name "g2reverb") |