From 42e2d64533c018a61db8408b5ae22312b210f7cc Mon Sep 17 00:00:00 2001 From: divoplade Date: Thu, 5 Nov 2020 08:25:46 +0100 Subject: [PATCH] gnu: upgrade guile to 3.0.4 It is impossible to have guile-3.0 installed as a package in the system configuration, because it is incompatible with guile-3.0-latest which is used by the system (see bug 44452). By having the same version, it works. --- gnu/packages/guile.scm | 16 +++------------- 1 file changed, 3 insertions(+), 13 deletions(-) diff --git a/gnu/packages/guile.scm b/gnu/packages/guile.scm index 6d93d7432f..ff943dd6de 100644 --- a/gnu/packages/guile.scm +++ b/gnu/packages/guile.scm @@ -284,14 +284,14 @@ without requiring the source code to be rewritten.") (package (inherit guile-2.2) (name "guile") - (version "3.0.2") + (version "3.0.4") (source (origin (inherit (package-source guile-2.2)) (uri (string-append "mirror://gnu/guile/guile-" version ".tar.xz")) (sha256 (base32 - "12lziar4j27j9whqp2n18427q45y9ghq7gdd8lqhmj1k0lr7vi2k")))) + "0c8dkyvs6xbxp7rgnhkyakajzhakay7qn9kahj1mj49x5vf4fybb")))) (arguments ;; XXX: JIT-enabled Guile crashes in obscure ways on GNU/Hurd. (if (hurd-target?) @@ -309,17 +309,7 @@ without requiring the source code to be rewritten.") "share/guile/site/3.0"))))))) (define-public guile-3.0-latest - ;; TODO: Make this 'guile-3.0' on the next rebuild cycle. - (package - (inherit guile-3.0) - (version "3.0.4") - (source (origin - (inherit (package-source guile-3.0)) - (uri (string-append "mirror://gnu/guile/guile-" - version ".tar.xz")) - (sha256 - (base32 - "0c8dkyvs6xbxp7rgnhkyakajzhakay7qn9kahj1mj49x5vf4fybb")))))) + (deprecated-package "guile-3.0-latest" guile-3.0)) (define-public guile-next (deprecated-package "guile-next" guile-3.0)) -- 2.29.2