guix_mirror_bot pushed a commit to branch core-packages-team in repository guix.
commit b91087a4205a7e0deb000d5728ba30310a0b1fb4 Author: Nicolas Graves <[email protected]> AuthorDate: Tue Feb 17 12:24:27 2026 +0100 gnu: stage0-posix: Drop input labels. * gnu/packages/commencement.scm (stage0-posix) [native-inputs]: Drop input labels. [arguments]<#:builder>: Adapt accordingly. Change-Id: I3ed5c9ab01584e495e294d1d60af656885da2a5a Signed-off-by: Ludovic Courtès <[email protected]> --- gnu/packages/commencement.scm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gnu/packages/commencement.scm b/gnu/packages/commencement.scm index f9971b6f4d..1bbffb1b03 100644 --- a/gnu/packages/commencement.scm +++ b/gnu/packages/commencement.scm @@ -362,7 +362,7 @@ pure Scheme to Tar and decompression in one easy step.") (supported-systems '("i686-linux" "x86_64-linux" "aarch64-linux" "riscv64-linux")) - (native-inputs (%boot-gash-inputs)) + (native-inputs (map cadr (%boot-gash-inputs))) (build-system trivial-build-system) (arguments (list @@ -373,8 +373,8 @@ pure Scheme to Tar and decompression in one easy step.") (use-modules (guix build utils)) (let* ((source #$(package-source this-package)) (tar #$(this-package-native-input "bootar")) - (bash #$(this-package-native-input "bash")) - (coreutils #$(this-package-native-input "coreutils")) + (bash #$(this-package-native-input "gash-boot")) + (coreutils #$(this-package-native-input "gash-utils-boot")) (guile #$(this-package-input "guile")) (out #$output) (bindir (string-append out "/bin"))
