summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2016-03-28 23:38:00 +0200
committerLudovic Courtès <ludo@gnu.org>2016-03-28 23:38:00 +0200
commit58f0aae5cb20780346c1eec4a10e8464e35bc72c (patch)
tree1005524cb306d35988962468a36ade8b41f8f900
parent34bf416e4a61324db80c5cea4ea5463f687057f9 (diff)
gnu: guix: Update to 0.10.0.
* gnu/packages/package-management.scm (guix-0.8.3): Rename to... (guix-0.10.0): ... this. Adjust users. (guix): Set to GUIX-0.10.0.
-rw-r--r--gnu/packages/package-management.scm12
1 files changed, 6 insertions, 6 deletions
diff --git a/gnu/packages/package-management.scm b/gnu/packages/package-management.scm
index c7fa1bd4217..c8f3c27bdb1 100644
--- a/gnu/packages/package-management.scm
+++ b/gnu/packages/package-management.scm
@@ -60,17 +60,17 @@
60 arch "-linux" 60 arch "-linux"
61 "/20131110/guile-2.0.9.tar.xz"))) 61 "/20131110/guile-2.0.9.tar.xz")))
62 62
63(define-public guix-0.9.0 63(define-public guix-0.10.0
64 (package 64 (package
65 (name "guix") 65 (name "guix")
66 (version "0.9.0") 66 (version "0.10.0")
67 (source (origin 67 (source (origin
68 (method url-fetch) 68 (method url-fetch)
69 (uri (string-append "ftp://alpha.gnu.org/gnu/guix/guix-" 69 (uri (string-append "ftp://alpha.gnu.org/gnu/guix/guix-"
70 version ".tar.gz")) 70 version ".tar.gz"))
71 (sha256 71 (sha256
72 (base32 72 (base32
73 "0h573z2br0bf43sxyzia9xlm03n3y43zg1snds3c2piq2m6kabrn")))) 73 "0d4afwy7bpqi4k4bzvwc4ga4shwssis1nrvdw53qjyg9bw1a8lbn"))))
74 (build-system gnu-build-system) 74 (build-system gnu-build-system)
75 (arguments 75 (arguments
76 `(#:configure-flags (list 76 `(#:configure-flags (list
@@ -196,7 +196,7 @@ the Nix package manager.")
196 ;; Note: use a very short commit id; with a longer one, the limit on 196 ;; Note: use a very short commit id; with a longer one, the limit on
197 ;; hash-bang lines would be exceeded while running the tests. 197 ;; hash-bang lines would be exceeded while running the tests.
198 (let ((commit "dd21308225610e7adfcbd1bfa07f72a42d7c7c35")) 198 (let ((commit "dd21308225610e7adfcbd1bfa07f72a42d7c7c35"))
199 (package (inherit guix-0.9.0) 199 (package (inherit guix-0.10.0)
200 (version (string-append "0.9.0-1." (string-take commit 4))) 200 (version (string-append "0.9.0-1." (string-take commit 4)))
201 (source (origin 201 (source (origin
202 (method git-fetch) 202 (method git-fetch)
@@ -208,7 +208,7 @@ the Nix package manager.")
208 "1yxjmjjfw2n6hwidrbaawljca11pwzsvif2b02virs94xqdy9zww")) 208 "1yxjmjjfw2n6hwidrbaawljca11pwzsvif2b02virs94xqdy9zww"))
209 (file-name (string-append "guix-" version "-checkout")))) 209 (file-name (string-append "guix-" version "-checkout"))))
210 (arguments 210 (arguments
211 (substitute-keyword-arguments (package-arguments guix-0.9.0) 211 (substitute-keyword-arguments (package-arguments guix-0.10.0)
212 ((#:configure-flags flags) 212 ((#:configure-flags flags)
213 ;; Set 'DOT_USER_PROGRAM' to the empty string so we don't keep a 213 ;; Set 'DOT_USER_PROGRAM' to the empty string so we don't keep a
214 ;; reference to Graphviz, whose closure is pretty big (too big for 214 ;; reference to Graphviz, whose closure is pretty big (too big for
@@ -232,7 +232,7 @@ the Nix package manager.")
232 ("texinfo" ,texinfo) 232 ("texinfo" ,texinfo)
233 ("graphviz" ,graphviz) 233 ("graphviz" ,graphviz)
234 ("help2man" ,help2man) 234 ("help2man" ,help2man)
235 ,@(package-native-inputs guix-0.9.0)))))) 235 ,@(package-native-inputs guix-0.10.0))))))
236 236
237(define-public guix guix-devel) 237(define-public guix guix-devel)
238 238