Archived
1
0
Fork 0

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:
Ludovic Courtès 2014-06-27 23:37:44 +02:00
parent 480af4d622
commit 5d69fb54fb

View file

@ -34,7 +34,7 @@
#:use-module (gnu packages gettext) #:use-module (gnu packages gettext)
#:use-module (gnu packages texinfo)) #:use-module (gnu packages texinfo))
(define-public guix (define-public guix-0.6
(package (package
(name "guix") (name "guix")
(version "0.6") (version "0.6")
@ -109,10 +109,10 @@ upgrades and roll-backs, per-user profiles, and much more. It is based on the
Nix package manager.") Nix package manager.")
(license gpl3+))) (license gpl3+)))
(define-public guix-devel (define-public guix
;; Development version of Guix. ;; Development version of Guix.
(let ((commit "20b1d19")) (let ((commit "20b1d19"))
(package (inherit guix) (package (inherit guix-0.6)
(version (string-append "0.6." commit)) (version (string-append "0.6." commit))
(source (origin (source (origin
(method git-fetch) (method git-fetch)
@ -124,7 +124,7 @@ Nix package manager.")
(base32 (base32
"0n278kzp586rzbhcghbj7am641yjc35pcb6n1r304myziwd0mz6r")))) "0n278kzp586rzbhcghbj7am641yjc35pcb6n1r304myziwd0mz6r"))))
(arguments (arguments
(substitute-keyword-arguments (package-arguments guix) (substitute-keyword-arguments (package-arguments guix-0.6)
((#:phases phases) ((#:phases phases)
`(alist-cons-before `(alist-cons-before
'configure 'bootstrap 'configure 'bootstrap
@ -160,4 +160,4 @@ Nix package manager.")
("gettext" ,gnu-gettext) ("gettext" ,gnu-gettext)
("texinfo" ,texinfo) ("texinfo" ,texinfo)
("graphviz" ,graphviz) ("graphviz" ,graphviz)
,@(package-native-inputs guix)))))) ,@(package-native-inputs guix-0.6))))))