[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
03/04: system: bare-hurd.tmpl: Override locale-libcs to avoid glibc-2.33
From: |
guix-commits |
Subject: |
03/04: system: bare-hurd.tmpl: Override locale-libcs to avoid glibc-2.33. |
Date: |
Sat, 16 Sep 2023 12:24:11 -0400 (EDT) |
janneke pushed a commit to branch hurd-team
in repository guix.
commit f3d45a5808749757bf3fb93fd886e0a25759e550
Author: Janneke Nieuwenhuizen <janneke@gnu.org>
AuthorDate: Sat Sep 16 15:07:20 2023 +0200
system: bare-hurd.tmpl: Override locale-libcs to avoid glibc-2.33.
Somehow, when running `guix system build' on the Hurd, glibc-2.33 still
leaks-in as a dependenc.
* gnu/system/examples/bare-hurd.tmpl (%hurd-os)[locale-libcs]: New field.
---
gnu/system/examples/bare-hurd.tmpl | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/gnu/system/examples/bare-hurd.tmpl
b/gnu/system/examples/bare-hurd.tmpl
index fd6ca7e287..018af7fbdd 100644
--- a/gnu/system/examples/bare-hurd.tmpl
+++ b/gnu/system/examples/bare-hurd.tmpl
@@ -25,7 +25,7 @@
(use-modules (gnu) (gnu system hurd) (guix utils))
(use-service-modules ssh)
-(use-package-modules certs ssh)
+(use-package-modules base certs ssh)
(define %hurd-os
(operating-system
@@ -40,6 +40,7 @@
%base-file-systems))
(host-name "guixygnu")
(timezone "Europe/Amsterdam")
+ (locale-libcs (list glibc/hurd))
(users (cons (user-account
(name "guix")
(comment "Anonymous Hurd Hacker")