gnu: Add workaround for `date` regression in coreutils@8.26.
See <https://bugs.gnu.org/23035> and <https://bugs.gnu.org/26238>. * gnu/packages/base.scm (coreutils-8.27): New variable. * gnu/system.scm (%base-packages): Use that instead of COREUTILS.
This commit is contained in:
parent
11f8e028d2
commit
e162050dfc
|
@ -7,6 +7,7 @@
|
||||||
;;; Copyright © 2014, 2015 Manolis Fragkiskos Ragkousis <manolis837@gmail.com>
|
;;; Copyright © 2014, 2015 Manolis Fragkiskos Ragkousis <manolis837@gmail.com>
|
||||||
;;; Copyright © 2016 Efraim Flashner <efraim@flashner.co.il>
|
;;; Copyright © 2016 Efraim Flashner <efraim@flashner.co.il>
|
||||||
;;; Copyright © 2016 Jan Nieuwenhuizen <janneke@gnu.org>
|
;;; Copyright © 2016 Jan Nieuwenhuizen <janneke@gnu.org>
|
||||||
|
;;; Copyright © 2017 Marius Bakke <mbakke@fastmail.com>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -361,6 +362,22 @@ functionality beyond that which is outlined in the POSIX standard.")
|
||||||
(license gpl3+)
|
(license gpl3+)
|
||||||
(home-page "https://www.gnu.org/software/coreutils/")))
|
(home-page "https://www.gnu.org/software/coreutils/")))
|
||||||
|
|
||||||
|
;; We add version 8.27 here for use in (gnu system) due to a time
|
||||||
|
;; zone bug in `date' versions 8.25 - 8.26.
|
||||||
|
;; https://debbugs.gnu.org/cgi/bugreport.cgi?bug=23035
|
||||||
|
;; https://debbugs.gnu.org/cgi/bugreport.cgi?bug=26238
|
||||||
|
(define-public coreutils-8.27
|
||||||
|
(package
|
||||||
|
(inherit coreutils)
|
||||||
|
(version "8.27")
|
||||||
|
(source (origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (string-append "mirror://gnu/coreutils/coreutils-"
|
||||||
|
version ".tar.xz"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"0sv547572iq8ayy8klir4hnngnx92a9nsazmf1wgzfc7xr4x74c8"))))))
|
||||||
|
|
||||||
(define-public coreutils-minimal
|
(define-public coreutils-minimal
|
||||||
;; Coreutils without its optional dependencies.
|
;; Coreutils without its optional dependencies.
|
||||||
(package
|
(package
|
||||||
|
|
|
@ -385,7 +385,7 @@ explicitly appear in OS."
|
||||||
;; The packages below are also in %FINAL-INPUTS, so take them from
|
;; The packages below are also in %FINAL-INPUTS, so take them from
|
||||||
;; there to avoid duplication.
|
;; there to avoid duplication.
|
||||||
(map canonical-package
|
(map canonical-package
|
||||||
(list guile-2.0 bash coreutils findutils grep sed
|
(list guile-2.0 bash coreutils-8.27 findutils grep sed
|
||||||
diffutils patch gawk tar gzip bzip2 xz lzip))))
|
diffutils patch gawk tar gzip bzip2 xz lzip))))
|
||||||
|
|
||||||
(define %default-issue
|
(define %default-issue
|
||||||
|
|
Loading…
Reference in New Issue