mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: lsp-plugins: Update to 1.2.3
* gnu/packages/music.scm (lsp-plugins): Update to 1.2.3. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
7699f5e4fe
commit
6d833c1f52
1 changed files with 20 additions and 10 deletions
|
@ -154,6 +154,7 @@
|
||||||
#:use-module (gnu packages perl)
|
#:use-module (gnu packages perl)
|
||||||
#:use-module (gnu packages perl-check)
|
#:use-module (gnu packages perl-check)
|
||||||
#:use-module (gnu packages perl-web)
|
#:use-module (gnu packages perl-web)
|
||||||
|
#:use-module (gnu packages php)
|
||||||
#:use-module (gnu packages pkg-config)
|
#:use-module (gnu packages pkg-config)
|
||||||
#:use-module (gnu packages protobuf)
|
#:use-module (gnu packages protobuf)
|
||||||
#:use-module (gnu packages pulseaudio) ;libsndfile
|
#:use-module (gnu packages pulseaudio) ;libsndfile
|
||||||
|
@ -5701,16 +5702,15 @@ and reverb.")
|
||||||
(define-public lsp-plugins
|
(define-public lsp-plugins
|
||||||
(package
|
(package
|
||||||
(name "lsp-plugins")
|
(name "lsp-plugins")
|
||||||
(version "1.1.26")
|
(version "1.2.3")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method git-fetch)
|
(method url-fetch)
|
||||||
(uri (git-reference
|
(uri (string-append "https://github.com/sadko4u/lsp-plugins"
|
||||||
(url "https://github.com/sadko4u/lsp-plugins")
|
"/releases/download/" version
|
||||||
(commit (string-append "lsp-plugins-" version))))
|
"/lsp-plugins-src-" version ".tar.gz"))
|
||||||
(file-name (git-file-name name version))
|
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "1apw8zh3a3il4smkjji6bih4vbsymj0hjs10fgkrd4nazqkjvgyd"))))
|
(base32 "0asgwrkyncxz5h7kjkbwm78z8l2jndxvsrgd634m5x9n37gjsgvs"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:make-flags
|
`(#:make-flags
|
||||||
|
@ -5721,18 +5721,28 @@ and reverb.")
|
||||||
(string-append "ETC_PATH=" (assoc-ref %outputs "out") "/etc"))
|
(string-append "ETC_PATH=" (assoc-ref %outputs "out") "/etc"))
|
||||||
#:phases
|
#:phases
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
(delete 'configure)) ; no configure script
|
(replace 'configure
|
||||||
#:test-target "test"))
|
(lambda* (#:key outputs #:allow-other-keys)
|
||||||
|
(let ((out (assoc-ref outputs "out")))
|
||||||
|
(invoke "make" "config" "TEST=1"
|
||||||
|
(string-append "PREFIX=" out)
|
||||||
|
(string-append "ETCDIR=" out "/etc")))))
|
||||||
|
(replace 'check
|
||||||
|
(lambda _
|
||||||
|
(invoke ".build/host/lsp-plugin-fw/lsp-plugins-test" "utest"))))))
|
||||||
(inputs
|
(inputs
|
||||||
(list cairo
|
(list cairo
|
||||||
|
freetype
|
||||||
hicolor-icon-theme
|
hicolor-icon-theme
|
||||||
jack-1
|
jack-1
|
||||||
ladspa
|
ladspa
|
||||||
libsndfile
|
libsndfile
|
||||||
|
libx11
|
||||||
|
libxrandr
|
||||||
lv2
|
lv2
|
||||||
mesa))
|
mesa))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list pkg-config))
|
(list pkg-config php))
|
||||||
(synopsis "Audio plugin collection")
|
(synopsis "Audio plugin collection")
|
||||||
(description "LSP (Linux Studio Plugins) is a collection of audio
|
(description "LSP (Linux Studio Plugins) is a collection of audio
|
||||||
plugins available as LADSPA/LV2 plugins and as standalone JACK
|
plugins available as LADSPA/LV2 plugins and as standalone JACK
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue