summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2012-11-30 22:01:47 +0100
committerLudovic Courtès <ludo@gnu.org>2012-11-30 22:01:47 +0100
commit3af4e05304574f2cfc6d59a4afc1e6539104afaf (patch)
treeb432d886ba0417001bcad255902d4839740d3de2
parentfa29b1998893f6ee136bca02bde2b59435d0737b (diff)
distro: guile-2.0: Update to 2.0.7.
* distro/packages/guile.scm (guile-2.0): Switch to 2.0.7. (guile-2.0/fixed): Stay at 2.0.6.
-rw-r--r--distro/packages/guile.scm14
1 files changed, 11 insertions, 3 deletions
diff --git a/distro/packages/guile.scm b/distro/packages/guile.scm
index a9a07a34ec6..5f9ddc6724e 100644
--- a/distro/packages/guile.scm
+++ b/distro/packages/guile.scm
@@ -91,14 +91,14 @@ extensible. It supports many SRFIs.")
91(define-public guile-2.0 91(define-public guile-2.0
92 (package 92 (package
93 (name "guile") 93 (name "guile")
94 (version "2.0.6") 94 (version "2.0.7")
95 (source (origin 95 (source (origin
96 (method url-fetch) 96 (method url-fetch)
97 (uri (string-append "mirror://gnu/guile/guile-" version 97 (uri (string-append "mirror://gnu/guile/guile-" version
98 ".tar.xz")) 98 ".tar.xz"))
99 (sha256 99 (sha256
100 (base32 100 (base32
101 "000ng5qsq3cl1k35jvzvhwxj92wx4q87745n2fppkd4irh58vv5l")))) 101 "0f53pxkia4v17n0avwqlcjpy0n89hkazm2xsa6p84lv8k6k8y9vg"))))
102 (build-system gnu-build-system) 102 (build-system gnu-build-system)
103 (native-inputs `(("pkgconfig" ,pkg-config))) 103 (native-inputs `(("pkgconfig" ,pkg-config)))
104 (inputs `(("libffi" ,libffi) 104 (inputs `(("libffi" ,libffi)
@@ -133,7 +133,15 @@ call interface, and powerful string processing.")
133(define-public guile-2.0/fixed 133(define-public guile-2.0/fixed
134 ;; A package of Guile 2.0 that's rarely changed. It is the one used 134 ;; A package of Guile 2.0 that's rarely changed. It is the one used
135 ;; in the `base' module, and thus changing it entails a full rebuild. 135 ;; in the `base' module, and thus changing it entails a full rebuild.
136 guile-2.0) 136 (package (inherit guile-2.0)
137 (version "2.0.6")
138 (source (origin
139 (method url-fetch)
140 (uri (string-append "mirror://gnu/guile/guile-" version
141 ".tar.xz"))
142 (sha256
143 (base32
144 "000ng5qsq3cl1k35jvzvhwxj92wx4q87745n2fppkd4irh58vv5l"))))))
137 145
138 146
139;;; 147;;;