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.
This commit is contained in:
Ludovic Courtès 2020-08-26 14:58:32 +02:00
parent 05867f9707
commit 3c6113a594
No known key found for this signature in database
GPG Key ID: 090B11993D9AEBB5

View File

@ -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))