gnu: Remove redundant icu4c@64 package.
* gnu/packages/icu4c.scm (icu4c-64): Remove variable. * gnu/packages/chromium.scm (ungoogled-chromium)[inputs]: Change ICU4C-64 to ICU4C.
This commit is contained in:
parent
004b4056d4
commit
fb82d3472d
|
@ -714,11 +714,7 @@ from forcing GEXP-PROMISE."
|
||||||
("glib" ,glib)
|
("glib" ,glib)
|
||||||
("gtk+" ,gtk+)
|
("gtk+" ,gtk+)
|
||||||
("harfbuzz" ,harfbuzz)
|
("harfbuzz" ,harfbuzz)
|
||||||
|
("icu4c" ,icu4c)
|
||||||
;; Build against ICU 64 to prevent a localization problem in version 75
|
|
||||||
;; and later: <https://github.com/Eloston/ungoogled-chromium/issues/778>.
|
|
||||||
("icu4c" ,icu4c-64)
|
|
||||||
|
|
||||||
("jsoncpp" ,jsoncpp)
|
("jsoncpp" ,jsoncpp)
|
||||||
("lcms" ,lcms)
|
("lcms" ,lcms)
|
||||||
("libevent" ,libevent)
|
("libevent" ,libevent)
|
||||||
|
|
|
@ -85,22 +85,6 @@ C/C++ part.")
|
||||||
(license x11)
|
(license x11)
|
||||||
(home-page "http://site.icu-project.org/")))
|
(home-page "http://site.icu-project.org/")))
|
||||||
|
|
||||||
(define-public icu4c-64
|
|
||||||
(package
|
|
||||||
(inherit icu4c)
|
|
||||||
(version "64.2")
|
|
||||||
(source (origin
|
|
||||||
(inherit (package-source icu4c))
|
|
||||||
(uri (string-append
|
|
||||||
"http://download.icu-project.org/files/icu4c/" version "/icu4c-"
|
|
||||||
(string-map (lambda (x) (if (char=? x #\.) #\_ x)) version)
|
|
||||||
"-src.tgz"))
|
|
||||||
(sha256
|
|
||||||
(base32 "0v0xsf14xwlj125y9fd8lrhsaych4d8liv8gr746zng6g225szb2"))))
|
|
||||||
(native-inputs
|
|
||||||
`(;; For tests.
|
|
||||||
("python" ,python)))))
|
|
||||||
|
|
||||||
(define-public java-icu4j
|
(define-public java-icu4j
|
||||||
(package
|
(package
|
||||||
(name "java-icu4j")
|
(name "java-icu4j")
|
||||||
|
|
Loading…
Reference in New Issue