gnu: icu4c: Add 66.1.
* gnu/packages/icu4c.scm (icu-66.1): New public variable.
This commit is contained in:
		
							parent
							
								
									b7851222a8
								
							
						
					
					
						commit
						e15acf8cac
					
				
					 1 changed files with 19 additions and 1 deletions
				
			
		| 
						 | 
				
			
			@ -4,7 +4,7 @@
 | 
			
		|||
;;; Copyright © 2016, 2017 Efraim Flashner <efraim@flashner.co.il>
 | 
			
		||||
;;; Copyright © 2017 Clément Lassieur <clement@lassieur.org>
 | 
			
		||||
;;; Copyright © 2017 Ricardo Wurmus <rekado@elephly.net>
 | 
			
		||||
;;; Copyright © 2019 Marius Bakke <mbakke@fastmail.com>
 | 
			
		||||
;;; Copyright © 2019, 2020 Marius Bakke <mbakke@fastmail.com>
 | 
			
		||||
;;;
 | 
			
		||||
;;; This file is part of GNU Guix.
 | 
			
		||||
;;;
 | 
			
		||||
| 
						 | 
				
			
			@ -117,6 +117,24 @@ C/C++ part.")
 | 
			
		|||
                         (search-patches
 | 
			
		||||
                           "icu4c-CVE-2020-10531.patch")))))))
 | 
			
		||||
 | 
			
		||||
(define-public icu4c-66.1
 | 
			
		||||
  (package
 | 
			
		||||
    (inherit icu4c)
 | 
			
		||||
    (version "66.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"))
 | 
			
		||||
              (patch-flags '("-p2"))
 | 
			
		||||
              (patches (search-patches "icu4c-CVE-2020-10531.patch"))
 | 
			
		||||
              (sha256
 | 
			
		||||
               (base32
 | 
			
		||||
                "0bharwzc9nzkbrcf405z2nb3h7q0711z450arz0mjmdrk8hg58sj"))))))
 | 
			
		||||
 | 
			
		||||
(define-public java-icu4j
 | 
			
		||||
  (package
 | 
			
		||||
    (name "java-icu4j")
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Reference in a new issue