me
/
guix
Archived
1
0
Fork 0

gnu: icu4c: Add 69.1.

* gnu/packages/icu4c.scm (icu4c-69): New public variable.
master
Marius Bakke 2021-06-01 18:17:03 +02:00
parent 9ea6e3f4d8
commit e54c03c1f5
No known key found for this signature in database
GPG Key ID: A2A06DF2A33A54FA
1 changed files with 16 additions and 0 deletions

View File

@ -130,6 +130,22 @@ C/C++ part.")
(base32
"09fng7a80xj8d5r1cgbgq8r47dsw5jsr6si9p2cj2ylhwgg974f7"))))))
(define-public icu4c-69
(package
(inherit icu4c)
(version "69.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
"0icps0avkwy5df3wwc5kybxcg63hcgk4phdh9g244g0xrmx7pfjc"))))))
(define-public icu4c-build-root
(package
(inherit icu4c)