mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 05:18:07 -05:00
gnu: guix: Update to 0.7.
* gnu/packages/package-management.scm (guix-0.6): Rename to... (guix-0.7): ... this. Upgrade to 0.7. (guix): Alias for GUIX-0.7. (guix-devel): Change 'guix-0.6' to 'guix-0.7'.
This commit is contained in:
parent
5f28f6aab4
commit
7eade0ee03
1 changed files with 9 additions and 7 deletions
|
@ -34,17 +34,17 @@ (define-module (gnu packages package-management)
|
||||||
#:use-module (gnu packages gettext)
|
#:use-module (gnu packages gettext)
|
||||||
#:use-module (gnu packages texinfo))
|
#:use-module (gnu packages texinfo))
|
||||||
|
|
||||||
(define-public guix-0.6
|
(define guix-0.7
|
||||||
(package
|
(package
|
||||||
(name "guix")
|
(name "guix")
|
||||||
(version "0.6")
|
(version "0.7")
|
||||||
(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
|
||||||
"01xw51wizhsk827w4xp79k2b6dxjaviw04r6rbrb85qdxnwg6k9n"))))
|
"05r7bsjgc0a4m7yy433n3c1dlv2yqlf3qpwlhayn9djhpp2q1ssb"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:configure-flags (list
|
`(#:configure-flags (list
|
||||||
|
@ -109,10 +109,12 @@ (define (copy arch)
|
||||||
Nix package manager.")
|
Nix package manager.")
|
||||||
(license gpl3+)))
|
(license gpl3+)))
|
||||||
|
|
||||||
(define-public guix
|
(define-public guix guix-0.7)
|
||||||
|
|
||||||
|
(define-public guix-devel
|
||||||
;; Development version of Guix.
|
;; Development version of Guix.
|
||||||
(let ((commit "0ae8c15"))
|
(let ((commit "0ae8c15"))
|
||||||
(package (inherit guix-0.6)
|
(package (inherit guix-0.7)
|
||||||
(version (string-append "0.6." commit))
|
(version (string-append "0.6." commit))
|
||||||
(source (origin
|
(source (origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
|
@ -124,7 +126,7 @@ (define-public guix
|
||||||
(base32
|
(base32
|
||||||
"1y6mwzwsjdxbfibqypb55dix371rifhfz0bygfr8k868lcdsawic"))))
|
"1y6mwzwsjdxbfibqypb55dix371rifhfz0bygfr8k868lcdsawic"))))
|
||||||
(arguments
|
(arguments
|
||||||
(substitute-keyword-arguments (package-arguments guix-0.6)
|
(substitute-keyword-arguments (package-arguments guix-0.7)
|
||||||
((#:phases phases)
|
((#:phases phases)
|
||||||
`(alist-cons-before
|
`(alist-cons-before
|
||||||
'configure 'bootstrap
|
'configure 'bootstrap
|
||||||
|
@ -160,4 +162,4 @@ (define-public guix
|
||||||
("gettext" ,gnu-gettext)
|
("gettext" ,gnu-gettext)
|
||||||
("texinfo" ,texinfo)
|
("texinfo" ,texinfo)
|
||||||
("graphviz" ,graphviz)
|
("graphviz" ,graphviz)
|
||||||
,@(package-native-inputs guix-0.6))))))
|
,@(package-native-inputs guix-0.7))))))
|
||||||
|
|
Loading…
Reference in a new issue