janneke pushed a commit to branch hurd-team
in repository guix.
commit 9227b267acd8143eca131e7e35f78842aae7f29b
Author: Ludovic Courtès <[email protected]>
AuthorDate: Fri Sep 22 14:54:05 2023 +0200
gnu: glibc-utf8-locales: Reintroduce input labels.
Since 2f73ea3487b3bf6eb055c08aae7c53713d61a4d7,
‘make-glibc-utf8-locales’ couldn’t be passed a package with a name other
than “glibc” (in particular “glibc-hurd”) since the builder expects the
name “glibc” in ‘%build-inputs’.
* gnu/packages/base.scm (make-glibc-utf8-locales): Reintroduce labels in
‘native-inputs’.
---
gnu/packages/base.scm | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/base.scm b/gnu/packages/base.scm
index e38ff91ef0..965ee1ab78 100644
--- a/gnu/packages/base.scm
+++ b/gnu/packages/base.scm
@@ -1384,7 +1384,9 @@ to the @code{share/locale} sub-directory of this
package.")
locale ".UTF-8")))
',locales)
#t))))
- (native-inputs (list glibc gzip))
+ (native-inputs
+ `(("glibc" ,glibc)
+ ("gzip" ,gzip)))
(synopsis (if default-locales?
(P_ "Small sample of UTF-8 locales")
(P_ "Customized sample of UTF-8 locales")))