diff options
author | Ludovic Courtès <ludo@gnu.org> | 2023-09-21 16:02:23 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2023-10-01 22:58:19 +0200 |
commit | ae50099c4633d2042951bb69c3a8f602ea79cb46 (patch) | |
tree | d3e7dc89f52a64a755ae0348384db7da48227778 /gnu/packages | |
parent | 81d46ef989fc2290d60a5c5f5451e81e7e546eda (diff) | |
download | guix-ae50099c4633d2042951bb69c3a8f602ea79cb46.tar.gz guix-ae50099c4633d2042951bb69c3a8f602ea79cb46.zip |
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’.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/base.scm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gnu/packages/base.scm b/gnu/packages/base.scm index 0b6cb2ddc5..c0813f7de0 100644 --- a/gnu/packages/base.scm +++ b/gnu/packages/base.scm @@ -1382,7 +1382,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"))) |