Archived
1
0
Fork 0

gnu: icu4c: Update source URI.

The previous URL started serving a HTML page, which ultimately refers to
<https://github.com/unicode-org/icu/releases>.
Reported by butterypancake on #guix.

* gnu/packages/icu4c.scm (icu4c)[source](uri): Change to GitHub.
This commit is contained in:
Marius Bakke 2020-05-01 20:36:09 +02:00
parent 26e11cffb9
commit 934f0b32cf
No known key found for this signature in database
GPG key ID: A2A06DF2A33A54FA

View file

@ -61,8 +61,8 @@
(source (origin (source (origin
(method url-fetch) (method url-fetch)
(uri (string-append (uri (string-append
"http://download.icu-project.org/files/icu4c/" "https://github.com/unicode-org/icu/releases/download/release-"
version (string-map (lambda (x) (if (char=? x #\.) #\- x)) version)
"/icu4c-" "/icu4c-"
(string-map (lambda (x) (if (char=? x #\.) #\_ x)) version) (string-map (lambda (x) (if (char=? x #\.) #\_ x)) version)
"-src.tgz")) "-src.tgz"))