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:
parent
26e11cffb9
commit
934f0b32cf
1 changed files with 2 additions and 2 deletions
|
@ -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"))
|
||||||
|
|
Reference in a new issue