mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 13:28:12 -05:00
gnu: lv2: Update to 1.16.0.
* gnu/packages/audio.scm (lv2): Update to 1.16.0. [arguments]: Remove #:python. (lv2-devel): Remove variable. * gnu/packages/music.scm (ingen)[inputs]: Change LV2-DEVEL to LV2.
This commit is contained in:
parent
86b2ab8f5b
commit
a2467954b8
2 changed files with 3 additions and 21 deletions
|
@ -1892,19 +1892,17 @@ (define-public lilv
|
||||||
(define-public lv2
|
(define-public lv2
|
||||||
(package
|
(package
|
||||||
(name "lv2")
|
(name "lv2")
|
||||||
(version "1.14.0")
|
(version "1.16.0")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "http://lv2plug.in/spec/lv2-"
|
(uri (string-append "http://lv2plug.in/spec/lv2-"
|
||||||
version ".tar.bz2"))
|
version ".tar.bz2"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0chxwys3vnn3nxc9x2vchm74s9sx0vfra6y893byy12ci61jc1dq"))))
|
"1ppippbpdpv13ibs06b0bixnazwfhiw0d0ja6hx42jnkgdyp5hyy"))))
|
||||||
(build-system waf-build-system)
|
(build-system waf-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:tests? #f ; no check target
|
`(#:tests? #f ; no check target
|
||||||
;; XXX: The bundled waf does not work with Python 3.7.
|
|
||||||
#:python ,python-2
|
|
||||||
#:configure-flags '("--no-plugins")))
|
#:configure-flags '("--no-plugins")))
|
||||||
(inputs
|
(inputs
|
||||||
;; Leaving off cairo and gtk+-2.0 which are needed for example plugins
|
;; Leaving off cairo and gtk+-2.0 which are needed for example plugins
|
||||||
|
@ -1920,22 +1918,6 @@ (define-public lv2
|
||||||
software.")
|
software.")
|
||||||
(license license:isc)))
|
(license license:isc)))
|
||||||
|
|
||||||
(define-public lv2-devel
|
|
||||||
(let ((commit "39c7c726cd52b2863fcea356cafe1bcab2ba7f37")
|
|
||||||
(revision "1"))
|
|
||||||
(package (inherit lv2)
|
|
||||||
(name "lv2-devel")
|
|
||||||
(version (string-append "1.15.3-" revision "." (string-take commit 7)))
|
|
||||||
(source (origin
|
|
||||||
(method git-fetch)
|
|
||||||
(uri (git-reference
|
|
||||||
(url "http://lv2plug.in/git/lv2.git")
|
|
||||||
(commit commit)))
|
|
||||||
(file-name (git-file-name name version))
|
|
||||||
(sha256
|
|
||||||
(base32
|
|
||||||
"1gp2rd99dfmpibvpixrqn115mrhybzf3if3h8bssf6siyi13f29r")))))))
|
|
||||||
|
|
||||||
(define-public lv2-mda-piano
|
(define-public lv2-mda-piano
|
||||||
(package
|
(package
|
||||||
(name "lv2-mda-piano")
|
(name "lv2-mda-piano")
|
||||||
|
|
|
@ -3374,7 +3374,7 @@ (define-public ingen
|
||||||
("python-rdflib" ,python-rdflib)
|
("python-rdflib" ,python-rdflib)
|
||||||
("python" ,python)
|
("python" ,python)
|
||||||
("jack" ,jack-1)
|
("jack" ,jack-1)
|
||||||
("lv2" ,lv2-devel)
|
("lv2" ,lv2)
|
||||||
("lilv" ,lilv)
|
("lilv" ,lilv)
|
||||||
("raul" ,raul-devel)
|
("raul" ,raul-devel)
|
||||||
("ganv" ,ganv-devel)
|
("ganv" ,ganv-devel)
|
||||||
|
|
Loading…
Reference in a new issue