mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 05:18:07 -05:00
gnu: guix: Update development snapshot.
* gnu/packages/package-management.scm (guix-0.7): Make public.
(guix-devel)[source]: Update to commit 14e84b2
.
[propagated-inputs]: New field.
(guix): Alias for GUIX-DEVEL.
This commit is contained in:
parent
78a90c7f47
commit
3ad9a0b1e7
1 changed files with 11 additions and 8 deletions
|
@ -39,7 +39,7 @@ (define-module (gnu packages package-management)
|
|||
#:use-module (gnu packages openssl)
|
||||
#:use-module (gnu packages bdw-gc))
|
||||
|
||||
(define guix-0.7
|
||||
(define-public guix-0.7
|
||||
(package
|
||||
(name "guix")
|
||||
(version "0.7")
|
||||
|
@ -114,13 +114,11 @@ (define (copy arch)
|
|||
the Nix package manager.")
|
||||
(license gpl3+)))
|
||||
|
||||
(define-public guix guix-0.7)
|
||||
|
||||
(define-public guix-devel
|
||||
(define guix-devel
|
||||
;; Development version of Guix.
|
||||
(let ((commit "0ae8c15"))
|
||||
(let ((commit "14e84b2"))
|
||||
(package (inherit guix-0.7)
|
||||
(version (string-append "0.6." commit))
|
||||
(version (string-append "0.7." commit))
|
||||
(source (origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
|
@ -129,7 +127,7 @@ (define-public guix-devel
|
|||
(recursive? #t)))
|
||||
(sha256
|
||||
(base32
|
||||
"1y6mwzwsjdxbfibqypb55dix371rifhfz0bygfr8k868lcdsawic"))))
|
||||
"00rmdxhrhf2yklvqc740dmwl7j67i0h3svjc9cwjdam94sys0m4n"))))
|
||||
(arguments
|
||||
(substitute-keyword-arguments (package-arguments guix-0.7)
|
||||
((#:phases phases)
|
||||
|
@ -167,7 +165,12 @@ (define-public guix-devel
|
|||
("gettext" ,gnu-gettext)
|
||||
("texinfo" ,texinfo)
|
||||
("graphviz" ,graphviz)
|
||||
,@(package-native-inputs guix-0.7))))))
|
||||
,@(package-native-inputs guix-0.7)))
|
||||
(propagated-inputs
|
||||
`(("guile-json" ,guile-json)
|
||||
,@(package-propagated-inputs guix-0.7))))))
|
||||
|
||||
(define-public guix guix-devel)
|
||||
|
||||
(define-public nix
|
||||
(package
|
||||
|
|
Loading…
Reference in a new issue