mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: glibc: Add version 2.31.
* gnu/packages/base.scm (glibc-2.31): New variable. * gnu/system/locale.scm (%default-locale-libcs): Add it.
This commit is contained in:
parent
3b49071fd1
commit
855bc05e11
2 changed files with 12 additions and 1 deletions
|
@ -956,6 +956,17 @@ with the Linux kernel.")
|
||||||
;; Below are old libc versions, which we use mostly to build locale data in
|
;; Below are old libc versions, which we use mostly to build locale data in
|
||||||
;; the old format (which the new libc cannot cope with.)
|
;; the old format (which the new libc cannot cope with.)
|
||||||
|
|
||||||
|
(define-public glibc-2.31
|
||||||
|
(package
|
||||||
|
(inherit glibc)
|
||||||
|
(version "2.31")
|
||||||
|
(source (origin
|
||||||
|
(inherit (package-source glibc))
|
||||||
|
(uri (string-append "mirror://gnu/glibc/glibc-" version ".tar.xz"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"05zxkyz9bv3j9h0xyid1rhvh3klhsmrpkf3bcs6frvlgyr2gwilj"))))))
|
||||||
|
|
||||||
(define-public glibc-2.30
|
(define-public glibc-2.30
|
||||||
(package
|
(package
|
||||||
(inherit glibc)
|
(inherit glibc)
|
||||||
|
|
|
@ -147,7 +147,7 @@ data format changes between libc versions."
|
||||||
|
|
||||||
(define %default-locale-libcs
|
(define %default-locale-libcs
|
||||||
;; The libcs for which we build locales by default.
|
;; The libcs for which we build locales by default.
|
||||||
(list glibc))
|
(list glibc-2.31 glibc))
|
||||||
|
|
||||||
(define %default-locale-definitions
|
(define %default-locale-definitions
|
||||||
;; Arbitrary set of locales that are built by default. They are here mostly
|
;; Arbitrary set of locales that are built by default. They are here mostly
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue