summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRicardo Wurmus <rekado@elephly.net>2016-12-20 17:30:25 +0100
committerRicardo Wurmus <rekado@elephly.net>2016-12-20 17:58:06 +0100
commitc8e2219cfb914429b6409dbef1491652b910f70b (patch)
tree97bb1316cc74cce6d3528554da7970a0ec6a0923
parenta81771f137716c62e7a44355e18ce5487ecf5301 (diff)
gnu: guix: Update to 0.12.0.
* gnu/packages/package-management.scm (guix-0.11.0): Rename to... (guix-0.12.0): ... this. Adjust users. (guix): Set to GUIX-0.12.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 7083a1664c5..bc30cb5f479 100644
--- a/gnu/packages/package-management.scm
+++ b/gnu/packages/package-management.scm
@@ -68,17 +68,17 @@
68 arch "-linux" 68 arch "-linux"
69 "/20131110/guile-2.0.9.tar.xz"))) 69 "/20131110/guile-2.0.9.tar.xz")))
70 70
71(define-public guix-0.11.0 71(define-public guix-0.12.0
72 (package 72 (package
73 (name "guix") 73 (name "guix")
74 (version "0.11.0") 74 (version "0.12.0")
75 (source (origin 75 (source (origin
76 (method url-fetch) 76 (method url-fetch)
77 (uri (string-append "ftp://alpha.gnu.org/gnu/guix/guix-" 77 (uri (string-append "ftp://alpha.gnu.org/gnu/guix/guix-"
78 version ".tar.gz")) 78 version ".tar.gz"))
79 (sha256 79 (sha256
80 (base32 80 (base32
81 "1cwrbpv4dq7aczwksmcfw9w8r2bzrb5ld9zvjcr90i804hjpcb93")))) 81 "1jgy5mlygmhxdqhrp6vr8w83ndcm5mk64xfravr8l2d7hq8y40b2"))))
82 (build-system gnu-build-system) 82 (build-system gnu-build-system)
83 (arguments 83 (arguments
84 `(#:configure-flags (list 84 `(#:configure-flags (list
@@ -227,7 +227,7 @@ the Nix package manager.")
227 ;; Note: use a very short commit id; with a longer one, the limit on 227 ;; Note: use a very short commit id; with a longer one, the limit on
228 ;; hash-bang lines would be exceeded while running the tests. 228 ;; hash-bang lines would be exceeded while running the tests.
229 (let ((commit "8d125cfc2e5cb0825bb40893ec3e940f85f1b235")) 229 (let ((commit "8d125cfc2e5cb0825bb40893ec3e940f85f1b235"))
230 (package (inherit guix-0.11.0) 230 (package (inherit guix-0.12.0)
231 (version (string-append "0.11.0-8." (string-take commit 4))) 231 (version (string-append "0.11.0-8." (string-take commit 4)))
232 (source (origin 232 (source (origin
233 (method git-fetch) 233 (method git-fetch)
@@ -241,7 +241,7 @@ the Nix package manager.")
241 "0h73m1zad67qqn7ygypcqscicvqj31wwkxsr85d5lr77v6bx7b6z")) 241 "0h73m1zad67qqn7ygypcqscicvqj31wwkxsr85d5lr77v6bx7b6z"))
242 (file-name (string-append "guix-" version "-checkout")))) 242 (file-name (string-append "guix-" version "-checkout"))))
243 (arguments 243 (arguments
244 (substitute-keyword-arguments (package-arguments guix-0.11.0) 244 (substitute-keyword-arguments (package-arguments guix-0.12.0)
245 ((#:configure-flags flags) 245 ((#:configure-flags flags)
246 ;; Set 'DOT_USER_PROGRAM' to the empty string so we don't keep a 246 ;; Set 'DOT_USER_PROGRAM' to the empty string so we don't keep a
247 ;; reference to Graphviz, whose closure is pretty big (too big for 247 ;; reference to Graphviz, whose closure is pretty big (too big for
@@ -259,7 +259,7 @@ the Nix package manager.")
259 259
260 (zero? (system* "sh" "bootstrap"))))))))))) 260 (zero? (system* "sh" "bootstrap")))))))))))
261 261
262(define-public guix guix-devel) 262(define-public guix guix-0.12.0)
263 263
264(define (source-file? file stat) 264(define (source-file? file stat)
265 "Return true if FILE is likely a source file, false if it is a typical 265 "Return true if FILE is likely a source file, false if it is a typical