gnu: icu4c: Add version 70.

Required for Icecat/Icedove >= 96.0.

* gnu/packages/icu4c.scm (icu4c-70): New variable.
This commit is contained in:
Jonathan Brielmaier 2022-01-15 19:32:14 +01:00
parent 3945810835
commit ac40779860
No known key found for this signature in database
GPG key ID: ECFC83988B4E4B9F

View file

@ -98,6 +98,22 @@ (define-public icu4c
(license x11)
(home-page "http://site.icu-project.org/")))
(define-public icu4c-70
(package
(inherit icu4c)
(version "70.1")
(source (origin
(method url-fetch)
(uri (string-append
"https://github.com/unicode-org/icu/releases/download/release-"
(string-map (lambda (x) (if (char=? x #\.) #\- x)) version)
"/icu4c-"
(string-map (lambda (x) (if (char=? x #\.) #\_ x)) version)
"-src.tgz"))
(sha256
(base32
"1m9zgkaf5lyh65nyc6n0n5bs2f5k53nnj1ih6nskpwbvq4l5884d"))))))
(define-public icu4c-67
(package
(inherit icu4c)