diff options
author | Ludovic Courtès <ludo@gnu.org> | 2020-08-26 14:58:32 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2020-08-26 16:02:38 +0200 |
commit | 3c6113a594c55f184cec746acd570ce4ad1747d1 (patch) | |
tree | a4fc20d95ce0a0348604f0d05ebc927e8dbf0f2d | |
parent | 05867f970782c39ef027e821933af572184e880f (diff) | |
download | guix-3c6113a594c55f184cec746acd570ce4ad1747d1.tar.gz |
gnu: guile: Update to 3.0.4.
* gnu/packages/guile.scm (guile-3.0): Update to 3.0.4. (guile-3.0-latest): Turn into an alias for GUILE-3.0.
-rw-r--r-- | gnu/packages/guile.scm | 17 |
1 files changed, 4 insertions, 13 deletions
diff --git a/gnu/packages/guile.scm b/gnu/packages/guile.scm index 6430633694..0f55a74a1e 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,8 @@ 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")))))) + ;; The latest 3.0.x version. + guile-3.0) (define-public guile-next (deprecated-package "guile-next" guile-3.0)) |