mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-11 21:59:08 -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 openssl)
|
||||||
#:use-module (gnu packages bdw-gc))
|
#:use-module (gnu packages bdw-gc))
|
||||||
|
|
||||||
(define guix-0.7
|
(define-public guix-0.7
|
||||||
(package
|
(package
|
||||||
(name "guix")
|
(name "guix")
|
||||||
(version "0.7")
|
(version "0.7")
|
||||||
|
@ -114,13 +114,11 @@ (define (copy arch)
|
||||||
the Nix package manager.")
|
the Nix package manager.")
|
||||||
(license gpl3+)))
|
(license gpl3+)))
|
||||||
|
|
||||||
(define-public guix guix-0.7)
|
(define guix-devel
|
||||||
|
|
||||||
(define-public guix-devel
|
|
||||||
;; Development version of Guix.
|
;; Development version of Guix.
|
||||||
(let ((commit "0ae8c15"))
|
(let ((commit "14e84b2"))
|
||||||
(package (inherit guix-0.7)
|
(package (inherit guix-0.7)
|
||||||
(version (string-append "0.6." commit))
|
(version (string-append "0.7." commit))
|
||||||
(source (origin
|
(source (origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
(uri (git-reference
|
(uri (git-reference
|
||||||
|
@ -129,7 +127,7 @@ (define-public guix-devel
|
||||||
(recursive? #t)))
|
(recursive? #t)))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1y6mwzwsjdxbfibqypb55dix371rifhfz0bygfr8k868lcdsawic"))))
|
"00rmdxhrhf2yklvqc740dmwl7j67i0h3svjc9cwjdam94sys0m4n"))))
|
||||||
(arguments
|
(arguments
|
||||||
(substitute-keyword-arguments (package-arguments guix-0.7)
|
(substitute-keyword-arguments (package-arguments guix-0.7)
|
||||||
((#:phases phases)
|
((#:phases phases)
|
||||||
|
@ -167,7 +165,12 @@ (define-public guix-devel
|
||||||
("gettext" ,gnu-gettext)
|
("gettext" ,gnu-gettext)
|
||||||
("texinfo" ,texinfo)
|
("texinfo" ,texinfo)
|
||||||
("graphviz" ,graphviz)
|
("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
|
(define-public nix
|
||||||
(package
|
(package
|
||||||
|
|
Loading…
Reference in a new issue