mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: guix: Use the development version by default.
* gnu/packages/package-management.scm (guix): Rename to... (guix-0.6): ... this. (guix-devel): Rename to... (guix): ... this. Replace references to 'guix' by references to 'guix-0.6'.
This commit is contained in:
parent
480af4d622
commit
5d69fb54fb
1 changed files with 5 additions and 5 deletions
|
@ -34,7 +34,7 @@ (define-module (gnu packages package-management)
|
|||
#:use-module (gnu packages gettext)
|
||||
#:use-module (gnu packages texinfo))
|
||||
|
||||
(define-public guix
|
||||
(define-public guix-0.6
|
||||
(package
|
||||
(name "guix")
|
||||
(version "0.6")
|
||||
|
@ -109,10 +109,10 @@ (define (copy arch)
|
|||
Nix package manager.")
|
||||
(license gpl3+)))
|
||||
|
||||
(define-public guix-devel
|
||||
(define-public guix
|
||||
;; Development version of Guix.
|
||||
(let ((commit "20b1d19"))
|
||||
(package (inherit guix)
|
||||
(package (inherit guix-0.6)
|
||||
(version (string-append "0.6." commit))
|
||||
(source (origin
|
||||
(method git-fetch)
|
||||
|
@ -124,7 +124,7 @@ (define-public guix-devel
|
|||
(base32
|
||||
"0n278kzp586rzbhcghbj7am641yjc35pcb6n1r304myziwd0mz6r"))))
|
||||
(arguments
|
||||
(substitute-keyword-arguments (package-arguments guix)
|
||||
(substitute-keyword-arguments (package-arguments guix-0.6)
|
||||
((#:phases phases)
|
||||
`(alist-cons-before
|
||||
'configure 'bootstrap
|
||||
|
@ -160,4 +160,4 @@ (define-public guix-devel
|
|||
("gettext" ,gnu-gettext)
|
||||
("texinfo" ,texinfo)
|
||||
("graphviz" ,graphviz)
|
||||
,@(package-native-inputs guix))))))
|
||||
,@(package-native-inputs guix-0.6))))))
|
||||
|
|
Loading…
Reference in a new issue