gnu: wayland: Update to 1.14.0.
* gnu/packages/freedesktop.scm (wayland): Update to 1.14.0. [arguments]<#:phases>: Remove.master
parent
550f4509ac
commit
62a91d2e23
|
@ -393,28 +393,17 @@ Python.")
|
||||||
(define-public wayland
|
(define-public wayland
|
||||||
(package
|
(package
|
||||||
(name "wayland")
|
(name "wayland")
|
||||||
(version "1.13.0")
|
(version "1.14.0")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "https://wayland.freedesktop.org/releases/"
|
(uri (string-append "https://wayland.freedesktop.org/releases/"
|
||||||
name "-" version ".tar.xz"))
|
name "-" version ".tar.xz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0lgywr1m0d79vr4s8aimj8a307nss29hhy68gjpqj7m667055c39"))))
|
"1f3sla6h0bw15fz8pjc67jhwj7pwmfdc7qlj42j5k9v116ycm07d"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:parallel-tests? #f
|
`(#:parallel-tests? #f))
|
||||||
#:phases
|
|
||||||
(modify-phases %standard-phases
|
|
||||||
;; Remove record shapes to workaround graphviz 2.40.1 problems.
|
|
||||||
;; http://www.graphviz.org/content/i-havent-been-able-render-these-files-graphviz-226
|
|
||||||
;; This will likely be fixed upstream in the next release.
|
|
||||||
;; https://lists.freedesktop.org/archives/wayland-devel/2017-June/034218.html
|
|
||||||
(add-before 'build 'fix-graphviz
|
|
||||||
(lambda _
|
|
||||||
(substitute* "doc/doxygen/dot/x-architecture.gv"
|
|
||||||
(("Mrecord") "none"))
|
|
||||||
#t)))))
|
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("doxygen" ,doxygen)
|
`(("doxygen" ,doxygen)
|
||||||
("graphviz" ,graphviz)
|
("graphviz" ,graphviz)
|
||||||
|
|
Reference in New Issue