[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
10/12: gnu: Add libc-locales-for-target and glibc-locales/hurd.
From: |
guix-commits |
Subject: |
10/12: gnu: Add libc-locales-for-target and glibc-locales/hurd. |
Date: |
Mon, 18 Sep 2023 01:43:07 -0400 (EDT) |
janneke pushed a commit to branch hurd-team
in repository guix.
commit 5401ab2a192e79864bbfbcd22667de62a2ea518e
Author: Janneke Nieuwenhuizen <janneke@gnu.org>
AuthorDate: Wed Jun 7 19:19:01 2023 +0200
gnu: Add libc-locales-for-target and glibc-locales/hurd.
* gnu/packages/base.scm (glibc-locales/hurd): New variable
(libc-locales-for-target): Use it in new procedure.
(glibc-utf8-locales/hurd): New variable.
(libc-utf8-locales-for-target): Use it in new procedure.
---
gnu/packages/base.scm | 27 +++++++++++++++++++++++++++
1 file changed, 27 insertions(+)
diff --git a/gnu/packages/base.scm b/gnu/packages/base.scm
index 0b6cb2ddc5..e38ff91ef0 100644
--- a/gnu/packages/base.scm
+++ b/gnu/packages/base.scm
@@ -76,6 +76,8 @@
#:use-module (srfi srfi-26)
#:export (glibc
libc-for-target
+ libc-locales-for-target
+ libc-utf8-locales-for-target
make-ld-wrapper
libiconv-if-needed
%final-inputs))
@@ -1509,6 +1511,31 @@ command.")
(_
glibc)))
+(define-public glibc-locales/hurd
+ (make-glibc-locales glibc/hurd))
+
+(define* (libc-locales-for-target #:optional
+ (target (or (%current-target-system)
+ (%current-system))))
+ (match target
+ ((? target-hurd?)
+ glibc-locales/hurd)
+ (_
+ glibc-locales)))
+
+(define-public glibc-utf8-locales/hurd
+ (hidden-package
+ (make-glibc-utf8-locales glibc/hurd)))
+
+(define* (libc-utf8-locales-for-target #:optional
+ (target (or (%current-target-system)
+ (%current-system))))
+ (match target
+ ((? target-hurd?)
+ glibc-utf8-locales/hurd)
+ (_
+ glibc-utf8-locales)))
+
(define-public tzdata
(package
(name "tzdata")
- 08/12: DRAFT hurd-boot: Support second boot., (continued)
- 08/12: DRAFT hurd-boot: Support second boot., guix-commits, 2023/09/18
- 09/12: DRAFT system: examples: Add devel-hurd.tmpl., guix-commits, 2023/09/18
- 01/12: gnu: guix: Update to 1.4.0-12.1a0c7f71f0., guix-commits, 2023/09/18
- 04/12: hurd: Support system init in /libexec/runsystem., guix-commits, 2023/09/18
- 03/12: system: bare-hurd.tmpl: Include glibc-2.33 locales in cross-build., guix-commits, 2023/09/18
- 07/12: DRAFT hurd: Support second boot., guix-commits, 2023/09/18
- 12/12: Revert "DRAFT daemon: Support chroot builds on GNU/Hurd.", guix-commits, 2023/09/18
- 11/12: DRAFT daemon: Support chroot builds on GNU/Hurd., guix-commits, 2023/09/18
- 05/12: hurd-boot: Support system init: Create essential device nodes., guix-commits, 2023/09/18
- 06/12: system: hurd: Add swap-services to hurd-default-essential-services., guix-commits, 2023/09/18
- 10/12: gnu: Add libc-locales-for-target and glibc-locales/hurd.,
guix-commits <=
- 02/12: maint: Support `guix shell' in Guix's git archive with manifest.scm., guix-commits, 2023/09/18