me
/
guix
Archived
1
0
Fork 0

gnu: icu4c: Add 67.1.

* gnu/packages/icu4c.scm (icu4c-67): New public variable.
master
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
1 changed files with 16 additions and 0 deletions

View File

@ -95,6 +95,22 @@ C/C++ part.")
(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)