diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2017-02-07 19:40:46 +0200 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2017-02-07 19:41:04 +0200 |
commit | 7ca72ec44bf52d459f1fbd994037b792999fe0eb (patch) | |
tree | ec512d49b8f82747458e80f32d1a959c4bbfce93 /gnu/packages/base.scm | |
parent | 242c09274588d6f747b666da5e693f0f526460eb (diff) | |
download | guix-7ca72ec44bf52d459f1fbd994037b792999fe0eb.tar guix-7ca72ec44bf52d459f1fbd994037b792999fe0eb.tar.gz |
gnu: glibc: Add version 2.24.
* gnu/packages/base.scm (glibc-2.24): New variable.
Diffstat (limited to 'gnu/packages/base.scm')
-rw-r--r-- | gnu/packages/base.scm | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/gnu/packages/base.scm b/gnu/packages/base.scm index a2efa32500..62f105613e 100644 --- a/gnu/packages/base.scm +++ b/gnu/packages/base.scm @@ -772,6 +772,18 @@ GLIBC/HURD for a Hurd host" ;; 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.24 + (package + (inherit glibc) + (version "2.24") + (source (origin + (inherit (package-source glibc)) + (uri (string-append "mirror://gnu/glibc/glibc-" + version ".tar.xz")) + (sha256 + (base32 + "1lxmprg9gm73gvafxd503x70z32phwjzcy74i0adfi6ixzla7m4r")))))) + (define-public glibc-2.23 (package (inherit glibc) |