diff options
author | Alexandros Theodotou <alex@zrythm.org> | 2020-04-06 22:14:47 +0100 |
---|---|---|
committer | Leo Famulari <leo@famulari.name> | 2020-04-07 14:15:13 -0400 |
commit | 2aaf76582d0371127a51a4e112a4d9ff5a30dd37 (patch) | |
tree | 6183caea6e7b52108a80c1d9881b511e0ec9ec6f | |
parent | c87bb5a9bd58a5b0ebd6b43763054c99fa743118 (diff) | |
download | gnu-guix-2aaf76582d0371127a51a4e112a4d9ff5a30dd37.tar gnu-guix-2aaf76582d0371127a51a4e112a4d9ff5a30dd37.tar.gz |
gnu: Add tap-lv2.
* gnu/packages/music.scm (tap-lv2): New variable.
Signed-off-by: Leo Famulari <leo@famulari.name>
-rw-r--r-- | gnu/packages/music.scm | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm index ee402bad4d..5257d9463a 100644 --- a/gnu/packages/music.scm +++ b/gnu/packages/music.scm @@ -5380,3 +5380,45 @@ filtered, pitch shifted and ultimately disintegrated. This is an unofficial port of the Regrader plugin created by Igorski. It is available as an LV2 plugin and a standalone JACK application.") (license license:expat))) + +(define-public tap-lv2 + (let ((commit "cab6e0dfb2ce20e4ad34b067d1281ec0b193598a") + (revision "1")) + (package + (name "tap-lv2") + (version (git-version "0.0" revision commit)) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/moddevices/tap-lv2.git") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "0q480djfqd9g8mzrggc4vl7yclrhdjqx563ghs8mvi2qq8liycw3")))) + (build-system gnu-build-system) + (arguments + `(#:tests? #f ; no check target + #:make-flags + (list "CC=gcc") + #:phases + (modify-phases %standard-phases + (delete 'configure) ; no configure + (replace 'install + (lambda _ + (invoke "make" + (string-append "INSTALL_PATH=" + (assoc-ref %outputs "out") + "/lib/lv2") + "install")))))) + (inputs + `(("lv2", lv2))) + (native-inputs + `(("pkg-config", pkg-config))) + (synopsis "Audio plugin collection") + (description "TAP (Tom's Audio Processing) plugins is a collection of + audio effect plugins originally released as LADSPA plugins. This package + offers an LV2 version ported by moddevices.") + (home-page "http://tap-plugins.sourceforge.net/") + (license license:gpl2)))) |