guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

branch master updated: gnu: wslay: Fix build.


From: guix-commits
Subject: branch master updated: gnu: wslay: Fix build.
Date: Sun, 19 Dec 2021 15:12:44 -0500

This is an automated email from the git hooks/post-receive script.

ngz pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new ee3f569  gnu: wslay: Fix build.
ee3f569 is described below

commit ee3f56915e0f4ba9d23384e84122d6009ee80481
Author: Nicolas Goaziou <mail@nicolasgoaziou.fr>
AuthorDate: Sun Dec 19 21:11:17 2021 +0100

    gnu: wslay: Fix build.
    
    * gnu/packages/web.scm (wslay)[argument]<#:phases>: Add phase to fix Sphinx
    error.
    
    Fixes <https://issues.guix.gnu.org/52661>.
---
 gnu/packages/web.scm | 10 +++++++++-
 1 file changed, 9 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/web.scm b/gnu/packages/web.scm
index fff7e48..9442b65 100644
--- a/gnu/packages/web.scm
+++ b/gnu/packages/web.scm
@@ -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



reply via email to

[Prev in Thread] Current Thread [Next in Thread]