guix_mirror_bot pushed a commit to branch core-packages-team in repository guix.
commit e72317ec7b6a332107758a957b9805ca2fb4f610 Author: Nicolas Graves <[email protected]> AuthorDate: Thu Feb 19 19:36:04 2026 +0100 gnu: texinfo-boot0: Drop input labels. * gnu/packages/commencement.scm (texinfo-boot0)[inputs]: Drop input labels. Change-Id: I0675f8af6b006bf72d10bc64831bc079c3771ef8 Signed-off-by: Ludovic Courtès <[email protected]> --- gnu/packages/commencement.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/commencement.scm b/gnu/packages/commencement.scm index 61eed3651b..10ab1e7ab2 100644 --- a/gnu/packages/commencement.scm +++ b/gnu/packages/commencement.scm @@ -2845,8 +2845,8 @@ memoized as a function of '%current-system'." (inherit texinfo) (source (bootstrap-origin (package-source texinfo))) (native-inputs '()) - (inputs `(,@(%boot0-inputs) - ("perl" ,perl-boot0))) + (inputs (append (map cadr (%boot0-inputs)) + (list perl-boot0))) (arguments `(#:implicit-inputs? #f #:guile ,%bootstrap-guile
