guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

branch master updated: gnu: icu4c: Add version 70.


From: guix-commits
Subject: branch master updated: gnu: icu4c: Add version 70.
Date: Sat, 15 Jan 2022 13:36:09 -0500

This is an automated email from the git hooks/post-receive script.

jonsger pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new ac40779860 gnu: icu4c: Add version 70.
ac40779860 is described below

commit ac40779860193dcc5ef4b52e12f2f25934d59e50
Author: Jonathan Brielmaier <jonathan.brielmaier@web.de>
AuthorDate: Sat Jan 15 19:32:14 2022 +0100

    gnu: icu4c: Add version 70.
    
    Required for Icecat/Icedove >= 96.0.
    
    * gnu/packages/icu4c.scm (icu4c-70): New variable.
---
 gnu/packages/icu4c.scm | 16 ++++++++++++++++
 1 file changed, 16 insertions(+)

diff --git a/gnu/packages/icu4c.scm b/gnu/packages/icu4c.scm
index 6e70f0c8f6..5b8f00863a 100644
--- a/gnu/packages/icu4c.scm
+++ b/gnu/packages/icu4c.scm
@@ -98,6 +98,22 @@ C/C++ part.")
    (license x11)
    (home-page "http://site.icu-project.org/";)))
 
+(define-public icu4c-70
+  (package
+    (inherit icu4c)
+    (version "70.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
+                "1m9zgkaf5lyh65nyc6n0n5bs2f5k53nnj1ih6nskpwbvq4l5884d"))))))
+
 (define-public icu4c-67
   (package
     (inherit icu4c)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]