gnu: wslay: Fix build.
* gnu/packages/web.scm (wslay)[argument]<#:phases>: Add phase to fix Sphinx error. Fixes <https://issues.guix.gnu.org/52661>.
This commit is contained in:
parent
4d57891027
commit
ee3f56915e
@ -1537,7 +1537,15 @@ high performance.")
|
||||
(build-system gnu-build-system)
|
||||
(arguments
|
||||
;; Parallel builds don't reliably succeed.
|
||||
`(#:parallel-build? #f))
|
||||
`(#:parallel-build? #f
|
||||
#:phases
|
||||
(modify-phases %standard-phases
|
||||
(add-after 'unpack 'fix-sphinx-error
|
||||
;; XXX: Remove in next version: fix applied upstream. See
|
||||
;; <https://github.com/tatsuhiro-t/wslay/commit/43fda1207ea5977043630500e0c8e77b98b35320>.
|
||||
(lambda _
|
||||
(substitute* "doc/sphinx/conf.py.in"
|
||||
(("add_stylesheet") "add_css_file")))))))
|
||||
(native-inputs
|
||||
(list autoconf
|
||||
automake
|
||||
|
Loading…
Reference in New Issue
Block a user