mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-31 06:46:50 +01: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 @@ (define (linker-script? file)
|
|||
;; Below are old libc versions, which we use mostly to build locale data in
|
||||
;; 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
|
||||
(package
|
||||
(inherit glibc)
|
||||
|
|
|
@ -147,7 +147,7 @@ (define* (locale-directory locales
|
|||
|
||||
(define %default-locale-libcs
|
||||
;; The libcs for which we build locales by default.
|
||||
(list glibc))
|
||||
(list glibc-2.31 glibc))
|
||||
|
||||
(define %default-locale-definitions
|
||||
;; Arbitrary set of locales that are built by default. They are here mostly
|
||||
|
|
Loading…
Reference in a new issue