1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-11 15:40:31 +02:00

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

View File

@@ -61,8 +61,8 @@
(source (origin
(method url-fetch)
(uri (string-append
"http://download.icu-project.org/files/icu4c/"
version
"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"))