mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-13 06:36:37 -05:00
gnu: icu4c: Add 67.1.
* gnu/packages/icu4c.scm (icu4c-67): New public variable.
This commit is contained in:
parent
acac3b94d7
commit
8169cc736a
1 changed files with 16 additions and 0 deletions
|
@ -95,6 +95,22 @@ (define-public icu4c
|
|||
(license x11)
|
||||
(home-page "http://site.icu-project.org/")))
|
||||
|
||||
(define-public icu4c-67
|
||||
(package
|
||||
(inherit icu4c)
|
||||
(version "67.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
|
||||
"1p6mhvxl0xr2n0g6xdps3mwzwlv6mjsz3xlpm793p9aiybb0ra4l"))))))
|
||||
|
||||
(define-public icu4c-build-root
|
||||
(package
|
||||
(inherit icu4c)
|
||||
|
|
Loading…
Reference in a new issue