[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/03: gnu: guile: Add 2.2.4.
From: |
guix-commits |
Subject: |
01/03: gnu: guile: Add 2.2.4. |
Date: |
Wed, 2 Oct 2019 05:37:42 -0400 (EDT) |
civodul pushed a commit to branch core-updates
in repository guix.
commit 8400d097bd84e25a6fb36b2216ed0b8d7e50411f
Author: Ludovic Courtès <address@hidden>
Date: Tue Oct 1 15:47:34 2019 +0200
gnu: guile: Add 2.2.4.
* gnu/packages/guile.scm (guile-2.2.4): New variable.
---
gnu/packages/guile.scm | 11 +++++++++++
1 file changed, 11 insertions(+)
diff --git a/gnu/packages/guile.scm b/gnu/packages/guile.scm
index b0dfa89..49a6e96 100644
--- a/gnu/packages/guile.scm
+++ b/gnu/packages/guile.scm
@@ -258,6 +258,17 @@ without requiring the source code to be rewritten.")
(timeout . 72000) ;20 hours
(max-silent-time . 36000))))) ;10 hours (needed on ARM
; when heavily loaded)
+(define-public guile-2.2.4
+ (package/inherit
+ guile-2.2
+ (version "2.2.4")
+ (source (origin
+ (inherit (package-source guile-2.2))
+ (uri (string-append "mirror://gnu/guile/guile-" version
+ ".tar.xz"))
+ (sha256
+ (base32
+ "07p3g0v2ba2vlfbfidqzlgbhnzdx46wh2rgc5gszq1mjyx5bks6r"))))))
(define-public guile-next
;; This is the upcoming Guile 3.0, with JIT support.