1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-09 22:50:34 +02:00

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 <ludo@gnu.org>
This commit is contained in:
Nicolas Graves
2026-02-17 12:24:27 +01:00
committed by Ludovic Courtès
parent cfb55cf36b
commit 4eefbf3079

View File

@@ -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"))