gnu: glibc: Add version 2.31.
* gnu/packages/base.scm (glibc-2.31): New variable. * gnu/system/locale.scm (%default-locale-libcs): Add it.master
parent
3b49071fd1
commit
855bc05e11
|
@ -956,6 +956,17 @@ with the Linux kernel.")
|
|||
;; 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 @@ data format changes between libc versions."
|
|||
|
||||
(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
|
||||
|
|
Reference in New Issue