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.
This commit is contained in:
Ludovic Courtès 2016-03-28 23:38:00 +02:00
parent 34bf416e4a
commit 58f0aae5cb

View file

@ -60,17 +60,17 @@ (define (boot-guile-uri arch)
arch "-linux" arch "-linux"
"/20131110/guile-2.0.9.tar.xz"))) "/20131110/guile-2.0.9.tar.xz")))
(define-public guix-0.9.0 (define-public guix-0.10.0
(package (package
(name "guix") (name "guix")
(version "0.9.0") (version "0.10.0")
(source (origin (source (origin
(method url-fetch) (method url-fetch)
(uri (string-append "ftp://alpha.gnu.org/gnu/guix/guix-" (uri (string-append "ftp://alpha.gnu.org/gnu/guix/guix-"
version ".tar.gz")) version ".tar.gz"))
(sha256 (sha256
(base32 (base32
"0h573z2br0bf43sxyzia9xlm03n3y43zg1snds3c2piq2m6kabrn")))) "0d4afwy7bpqi4k4bzvwc4ga4shwssis1nrvdw53qjyg9bw1a8lbn"))))
(build-system gnu-build-system) (build-system gnu-build-system)
(arguments (arguments
`(#:configure-flags (list `(#:configure-flags (list
@ -196,7 +196,7 @@ (define guix-devel
;; Note: use a very short commit id; with a longer one, the limit on ;; Note: use a very short commit id; with a longer one, the limit on
;; hash-bang lines would be exceeded while running the tests. ;; hash-bang lines would be exceeded while running the tests.
(let ((commit "dd21308225610e7adfcbd1bfa07f72a42d7c7c35")) (let ((commit "dd21308225610e7adfcbd1bfa07f72a42d7c7c35"))
(package (inherit guix-0.9.0) (package (inherit guix-0.10.0)
(version (string-append "0.9.0-1." (string-take commit 4))) (version (string-append "0.9.0-1." (string-take commit 4)))
(source (origin (source (origin
(method git-fetch) (method git-fetch)
@ -208,7 +208,7 @@ (define guix-devel
"1yxjmjjfw2n6hwidrbaawljca11pwzsvif2b02virs94xqdy9zww")) "1yxjmjjfw2n6hwidrbaawljca11pwzsvif2b02virs94xqdy9zww"))
(file-name (string-append "guix-" version "-checkout")))) (file-name (string-append "guix-" version "-checkout"))))
(arguments (arguments
(substitute-keyword-arguments (package-arguments guix-0.9.0) (substitute-keyword-arguments (package-arguments guix-0.10.0)
((#:configure-flags flags) ((#:configure-flags flags)
;; Set 'DOT_USER_PROGRAM' to the empty string so we don't keep a ;; Set 'DOT_USER_PROGRAM' to the empty string so we don't keep a
;; reference to Graphviz, whose closure is pretty big (too big for ;; reference to Graphviz, whose closure is pretty big (too big for
@ -232,7 +232,7 @@ (define guix-devel
("texinfo" ,texinfo) ("texinfo" ,texinfo)
("graphviz" ,graphviz) ("graphviz" ,graphviz)
("help2man" ,help2man) ("help2man" ,help2man)
,@(package-native-inputs guix-0.9.0)))))) ,@(package-native-inputs guix-0.10.0))))))
(define-public guix guix-devel) (define-public guix guix-devel)