guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

04/05: gnu: guile: Add version 3.0.8 as 'guile-3.0-latest'.


From: guix-commits
Subject: 04/05: gnu: guile: Add version 3.0.8 as 'guile-3.0-latest'.
Date: Fri, 11 Feb 2022 11:30:45 -0500 (EST)

civodul pushed a commit to branch master
in repository guix.

commit 076e825dc5d585943ce820a279fffe4af09757fb
Author: Ludovic Courtès <ludo@gnu.org>
AuthorDate: Fri Feb 11 11:20:19 2022 +0100

    gnu: guile: Add version 3.0.8 as 'guile-3.0-latest'.
    
    * gnu/packages/guile.scm (guile-3.0-latest): Set to 3.0.8.
---
 gnu/packages/guile.scm | 16 +++++++++++++++-
 1 file changed, 15 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/guile.scm b/gnu/packages/guile.scm
index 89055a8f8b..cad5b91b9e 100644
--- a/gnu/packages/guile.scm
+++ b/gnu/packages/guile.scm
@@ -389,7 +389,21 @@ without requiring the source code to be rewritten.")
                      "share/guile/site/3.0")))))))
 
 (define-public guile-3.0-latest
-  guile-3.0)
+  (package
+    (inherit guile-3.0)
+    (version "3.0.8")
+    (source (origin
+              (inherit (package-source guile-3.0))
+              (uri (string-append "mirror://gnu/guile/guile-"
+                                  version ".tar.xz"))
+              (sha256
+               (base32
+                "04wagg0zr0sib0w9ly5jm91jplgfigzfgmy8fjdlx07jaq50d9ys"))))
+    (arguments
+     (substitute-keyword-arguments (package-arguments guile-3.0)
+       ;; Guile 3.0.8 is bit-reproducible when built in parallel, thanks to
+       ;; its multi-stage build process for cross-module inlining.
+       ((#:parallel-build? _ #f) #t)))))
 
 (define-public guile-3.0-for-lokke
   ;; Work around a bug in 3.0.7 regarding #nil handling by psyntax:



reply via email to

[Prev in Thread] Current Thread [Next in Thread]