diff options
author | Janneke Nieuwenhuizen <janneke@gnu.org> | 2023-09-16 15:16:59 +0200 |
---|---|---|
committer | Janneke Nieuwenhuizen <janneke@gnu.org> | 2023-09-16 15:35:25 +0200 |
commit | 41df5c5289c970b40a002a32dcfdcb61ddc5a2f5 (patch) | |
tree | 1a0996029db61d8fd37c0c57a6672fbdaff56f41 | |
parent | bd303443be97c5aa5f8696f6f1ecc5e40b919874 (diff) |
system: hurd: Override locale-libcs harder.
This really removes the locale-2.33 dependency running `guix system build
bare-hurd.tmpl' on the Hurd, that somehow still managed to leak-in?
* gnu/system/hurd.scm (%base-packages/hurd)[locale-libcs]: New field.
-rw-r--r-- | gnu/system/hurd.scm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gnu/system/hurd.scm b/gnu/system/hurd.scm index ec81217330..3b138bef65 100644 --- a/gnu/system/hurd.scm +++ b/gnu/system/hurd.scm @@ -129,6 +129,7 @@ (file-systems '()) (packages %base-packages/hurd) (timezone "GNUrope") + (locale-libcs (list glibc/hurd)) (name-service-switch #f) (essential-services (hurd-default-essential-services this-operating-system)) (setuid-programs %setuid-programs/hurd))) |