1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-05-02 07:15:53 +02:00

gnu: guile-for-guile-emacs: Fix build.

Got broken in commit 98f894e05f which updated
guile-next and removed a no longer needed phase.  This package still needed
that phase though.

* gnu/packages/guile.scm (guile-for-guile-emacs)[arguments]: Add phase to
disable a failing test.

Change-Id: Ia45e33f65187e3fdb02dc6a9560d04479e32a017
Signed-off-by: Zheng Junjie <z572@z572.online>
This commit is contained in:
Morgan Smith
2025-03-04 21:09:30 -05:00
committed by Zheng Junjie
parent 98d9103b1c
commit 535efb3c9a
+8 -1
View File
@@ -625,7 +625,14 @@ GNU@tie{}Guile. Use the @code{(ice-9 readline)} module and call its
(file-name (git-file-name name version))
(sha256
(base32
"0fgkcv29581kqkxqq6y48xly72970qs7016qhs6c4ilygg0gyfqb")))))))
"0fgkcv29581kqkxqq6y48xly72970qs7016qhs6c4ilygg0gyfqb"))))
(arguments
(substitute-keyword-arguments (package-arguments guile-next)
((#:phases phases '%standard-phases)
#~(modify-phases #$phases
(add-before 'check 'skip-failing-tests
(lambda _
(delete-file "test-suite/tests/version.test"))))))))))
;;;