mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: icu4c: Update to 64.2.
* gnu/packages/icu4c.scm (icu4c): Update to 64.2. [native-inputs]: Add PYTHON.
This commit is contained in:
parent
3b08c873d8
commit
27ed6960be
1 changed files with 5 additions and 2 deletions
|
@ -23,6 +23,7 @@
|
|||
(define-module (gnu packages icu4c)
|
||||
#:use-module (gnu packages)
|
||||
#:use-module (gnu packages perl)
|
||||
#:use-module (gnu packages python)
|
||||
#:use-module (guix licenses)
|
||||
#:use-module (guix packages)
|
||||
#:use-module (guix download)
|
||||
|
@ -32,7 +33,7 @@ (define-module (gnu packages icu4c)
|
|||
(define-public icu4c
|
||||
(package
|
||||
(name "icu4c")
|
||||
(version "63.1")
|
||||
(version "64.2")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (string-append
|
||||
|
@ -42,8 +43,10 @@ (define-public icu4c
|
|||
(string-map (lambda (x) (if (char=? x #\.) #\_ x)) version)
|
||||
"-src.tgz"))
|
||||
(sha256
|
||||
(base32 "17fbk0lm2clsxbmjzvyp245ayx0n4chji3ky1f3fbz2ljjv91i05"))))
|
||||
(base32 "0v0xsf14xwlj125y9fd8lrhsaych4d8liv8gr746zng6g225szb2"))))
|
||||
(build-system gnu-build-system)
|
||||
(native-inputs
|
||||
`(("python" ,python)))
|
||||
(inputs
|
||||
`(("perl" ,perl)))
|
||||
(arguments
|
||||
|
|
Loading…
Reference in a new issue