diff options
author | Ludovic Courtès <ludo@gnu.org> | 2019-12-11 23:54:35 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2020-01-05 11:40:02 +0100 |
commit | 3bccc5edacbef0204ca1d261da9621a044906028 (patch) | |
tree | e651aa4cf07c353762868a882c6d3465df9dd3c3 /gnu/packages/commencement.scm | |
parent | b446a604b491cf66cc818d50fa23461a37dc94a2 (diff) | |
download | guix-3bccc5edacbef0204ca1d261da9621a044906028.tar.gz |
system: bootstrap: Compute and print the result's hash. wip-system-bootstrap
* gnu/packages/commencement.scm (%bootstrap-guile+guild): Make public. [properties]: New field. * gnu/system/bootstrap.scm (hash-script): New procedure. (bootstrapping-os): Wrap OBJ in 'hash-script'.
Diffstat (limited to 'gnu/packages/commencement.scm')
-rw-r--r-- | gnu/packages/commencement.scm | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gnu/packages/commencement.scm b/gnu/packages/commencement.scm index 34584fbde5..bec91f306e 100644 --- a/gnu/packages/commencement.scm +++ b/gnu/packages/commencement.scm @@ -84,7 +84,7 @@ ;;; ;;; Code: -(define %bootstrap-guile+guild +(define-public %bootstrap-guile+guild ;; This package combines %bootstrap-guile with guild, which is not included ;; in %bootstrap-guile. Guild is needed to build gash-boot and ;; gash-core-utils-boot because it is dependency of the Guile build system. @@ -133,7 +133,8 @@ (synopsis "Bootstrap Guile plus Guild") (description "Bootstrap Guile with added Guild") (home-page #f) - (license (package-license guile-2.0)))) + (license (package-license guile-2.0)) + (properties '((hidden? . #t))))) (define mes-boot (package |