[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
09/09: gnu: guile: Add version 2.2.3.
From: |
Ludovic Courtès |
Subject: |
09/09: gnu: guile: Add version 2.2.3. |
Date: |
Fri, 1 Dec 2017 10:00:39 -0500 (EST) |
civodul pushed a commit to branch master
in repository guix.
commit c7ffbfe9f9209d7290489af77d6476cca8f55201
Author: Ludovic Courtès <address@hidden>
Date: Fri Dec 1 15:59:31 2017 +0100
gnu: guile: Add version 2.2.3.
* gnu/packages/guile.scm (guile-2.2.3): New variable.
---
gnu/packages/guile.scm | 17 ++++++++++++++++-
1 file changed, 16 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/guile.scm b/gnu/packages/guile.scm
index fef15b4..03c7f70 100644
--- a/gnu/packages/guile.scm
+++ b/gnu/packages/guile.scm
@@ -221,7 +221,7 @@ without requiring the source code to be rewritten.")
(define-public guile-2.2
(package (inherit guile-2.0)
(name "guile")
- (version "2.2.2")
+ (version "2.2.2") ;TODO: Update to 2.2.3 (see below).
(source (origin
(method url-fetch)
@@ -251,6 +251,21 @@ without requiring the source code to be rewritten.")
(files '("lib/guile/2.2/site-ccache"
"share/guile/site/2.2")))))))
+(define-public guile-2.2.3
+ ;; TODO: Make it the new 'guile-2.2' on the next rebuild cycle.
+ (package
+ (inherit guile-2.2)
+ (version "2.2.3")
+ (source (origin (inherit (package-source guile-2.2))
+ (uri (list (string-append "mirror://gnu/guile/guile-"
+ version ".tar.xz")
+ (string-append
+ "https://wingolog.org/priv/guile-"
+ version ".tar.xz")))
+ (sha256
+ (base32
+
"11j01agvnci2cx32wwpqs9078856yxmvs15gcsz7ganpkj2ahlw3"))))))
+
(define-public guile-2.2/fixed
;; A package of Guile 2.2 that's rarely changed. It is the one used
;; in the `base' module, and thus changing it entails a full rebuild.
- branch master updated (e695d79 -> c7ffbfe), Ludovic Courtès, 2017/12/01
- 01/09: progress: Factorize erase-in-line., Ludovic Courtès, 2017/12/01
- 02/09: progress: 'progress-bar' accounts for brackets., Ludovic Courtès, 2017/12/01
- 03/09: progress: Add 'progress-reporter/bar'., Ludovic Courtès, 2017/12/01
- 05/09: guix system: Simplify closure copy., Ludovic Courtès, 2017/12/01
- 09/09: gnu: guile: Add version 2.2.3.,
Ludovic Courtès <=
- 04/09: weather: Use (guix progress) for progress report., Ludovic Courtès, 2017/12/01
- 08/09: gnu: gnome-default-applications: Add Evince for PDF and PS., Ludovic Courtès, 2017/12/01
- 07/09: services: xorg: Add 'font-misc-misc' to the default font set., Ludovic Courtès, 2017/12/01
- 06/09: guix system: 'init' displays a progress bar while copying., Ludovic Courtès, 2017/12/01