gnu: icu4c: Add 67.1.

* gnu/packages/icu4c.scm (icu4c-67): New public variable.
This commit is contained in:
Marius Bakke 2020-06-21 21:17:36 +02:00
parent acac3b94d7
commit 8169cc736a
No known key found for this signature in database
GPG key ID: A2A06DF2A33A54FA

View file

@ -95,6 +95,22 @@ (define-public icu4c
(license x11)
(home-page "http://site.icu-project.org/")))
(define-public icu4c-67
(package
(inherit icu4c)
(version "67.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
"1p6mhvxl0xr2n0g6xdps3mwzwlv6mjsz3xlpm793p9aiybb0ra4l"))))))
(define-public icu4c-build-root
(package
(inherit icu4c)