diff options
author | David Thompson <dthompson2@worcester.edu> | 2024-07-18 14:54:20 -0400 |
---|---|---|
committer | David Thompson <dthompson2@worcester.edu> | 2024-07-19 12:41:20 -0400 |
commit | 24163eea584663568b68e19f364256fc7396b61f (patch) | |
tree | 368bac1a6ed732a974d65a520c731d77d66a4dc9 | |
parent | 1e918509ab4660391624069b9e610cfbefec00c5 (diff) | |
download | guix-24163eea584663568b68e19f364256fc7396b61f.tar.gz guix-24163eea584663568b68e19f364256fc7396b61f.zip |
gnu: guile: Update to 3.0.10.
* gnu/packages/guile.scm (guile-3.0-latest): Update to 3.0.10.
Change-Id: Id9d58199f1fa3307c94f442c185307d2f4a9ce6f
-rw-r--r-- | gnu/packages/guile.scm | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/gnu/packages/guile.scm b/gnu/packages/guile.scm index e8705dc7d2..077b7b7d37 100644 --- a/gnu/packages/guile.scm +++ b/gnu/packages/guile.scm @@ -322,7 +322,6 @@ without requiring the source code to be rewritten.") "07p3g0v2ba2vlfbfidqzlgbhnzdx46wh2rgc5gszq1mjyx5bks6r")))))) (define-public guile-3.0 - ;; This is the latest Guile stable version. (package (inherit guile-2.2) (name "guile") @@ -438,7 +437,18 @@ without requiring the source code to be rewritten.") (files '("lib/guile/3.0/site-ccache" "share/guile/site/3.0"))))))) -(define-public guile-3.0-latest guile-3.0) +(define-public guile-3.0-latest + ;; This is the latest Guile stable version. + (package + (inherit guile-3.0) + (version "3.0.10") + (source (origin + (inherit (package-source guile-3.0)) + (uri (string-append "mirror://gnu/guile/guile-" + version ".tar.xz")) + (sha256 + (base32 + "1233wzcbiqhp5qr3ggag14s5d4i7cn0spxyl8qs369nmgx8nhwdx")))))) ;;; The symbol guile-3.0/fixed should be used when guile-3.0 needs fixes ;;; (security or else) and this deprecation could be removed. |