diff options
author | Marius Bakke <mbakke@fastmail.com> | 2019-05-02 13:58:57 +0200 |
---|---|---|
committer | Marius Bakke <mbakke@fastmail.com> | 2019-05-04 16:25:52 +0200 |
commit | 27ed6960beda88e823790f3ab4cd9af9772c00ae (patch) | |
tree | fb930afbd1e8e3276eaf6d62ff7eae7fec20e946 | |
parent | 3b08c873d857b5585204535da8906e53c8aed568 (diff) | |
download | patches-27ed6960beda88e823790f3ab4cd9af9772c00ae.tar patches-27ed6960beda88e823790f3ab4cd9af9772c00ae.tar.gz |
gnu: icu4c: Update to 64.2.
* gnu/packages/icu4c.scm (icu4c): Update to 64.2.
[native-inputs]: Add PYTHON.
-rw-r--r-- | gnu/packages/icu4c.scm | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/gnu/packages/icu4c.scm b/gnu/packages/icu4c.scm index 6e93d6aed9..054c41d361 100644 --- a/gnu/packages/icu4c.scm +++ b/gnu/packages/icu4c.scm @@ -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-public icu4c (package (name "icu4c") - (version "63.1") + (version "64.2") (source (origin (method url-fetch) (uri (string-append @@ -42,8 +43,10 @@ (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 |