diff options
author | Ludovic Courtès <ludo@gnu.org> | 2016-10-13 23:05:45 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2016-10-13 23:08:17 +0200 |
commit | c62a31ca802c2b225279c4b0360a4cfc2723ad28 (patch) | |
tree | 2327e0cf78632ff689526437c283f520d31413d9 /gnu/packages/guile.scm | |
parent | 3abd66aa0cb8820124d249e497c95bd0cadb8ca2 (diff) | |
download | guix-c62a31ca802c2b225279c4b0360a4cfc2723ad28.tar guix-c62a31ca802c2b225279c4b0360a4cfc2723ad28.tar.gz |
gnu: guile: Graft 2.0.13.
* gnu/packages/guile.scm (guile-2.0.13): New variable.
(guile-2.0)[replacement]: New field.
(guile-2.0/fixed)[properties, replacement]: New fields.
(guile-next)[replacement]: New field.
* gnu/packages/make-bootstrap.scm (%guile-static)[replacement]: New
field.
Diffstat (limited to 'gnu/packages/guile.scm')
-rw-r--r-- | gnu/packages/guile.scm | 19 |
1 files changed, 18 insertions, 1 deletions
diff --git a/gnu/packages/guile.scm b/gnu/packages/guile.scm index 6bb5e87a94..28a52fc70d 100644 --- a/gnu/packages/guile.scm +++ b/gnu/packages/guile.scm @@ -131,6 +131,7 @@ without requiring the source code to be rewritten.") (package (name "guile") (version "2.0.12") + (replacement guile-2.0.13) ;CVE-2016-8606 and CVE-2016-8605 (source (origin (method url-fetch) (uri (string-append "mirror://gnu/guile/guile-" version @@ -198,12 +199,28 @@ without requiring the source code to be rewritten.") (define-public guile-2.0/fixed ;; A package of Guile 2.0 that's rarely changed. It is the one used ;; in the `base' module, and thus changing it entails a full rebuild. - guile-2.0) + (package + (inherit guile-2.0) + (properties '((hidden? . #t))) ;people should install 'guile-2.0' + (replacement #f))) + +(define guile-2.0.13 + (package + (inherit guile-2.0) + (version "2.0.13") + (source (origin + (method url-fetch) + (uri (string-append "mirror://gnu/guile/guile-" version + ".tar.xz")) + (sha256 + (base32 + "12yqkr974y91ylgw6jnmci2v90i90s7h9vxa4zk0sai8vjnz4i1p")))))) (define-public guile-next (package (inherit guile-2.0) (name "guile-next") (version "2.1.4") + (replacement #f) (source (origin (method url-fetch) (uri (string-append "ftp://alpha.gnu.org/gnu/guile/guile-" |