mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 22:08:16 -05:00
gnu: iso-codes: Update to 3.67.
* gnu/packages/iso-codes.scm (iso-codes): Update to 3.67. [inputs]: Replace python-2 with python-wrapper. [home-page]: Use https.
This commit is contained in:
parent
0736643424
commit
e94616b996
1 changed files with 6 additions and 5 deletions
|
@ -1,5 +1,6 @@
|
||||||
;;; GNU Guix --- Functional package management for GNU
|
;;; GNU Guix --- Functional package management for GNU
|
||||||
;;; Copyright © 2013 Cyril Roelandt <tipecaml@gmail.com>
|
;;; Copyright © 2013 Cyril Roelandt <tipecaml@gmail.com>
|
||||||
|
;;; Copyright © 2016 Efraim Flashner <efraim@flashner.co.il>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -28,21 +29,21 @@ (define-module (gnu packages iso-codes)
|
||||||
(define-public iso-codes
|
(define-public iso-codes
|
||||||
(package
|
(package
|
||||||
(name "iso-codes")
|
(name "iso-codes")
|
||||||
(version "3.49")
|
(version "3.67")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append
|
(uri (string-append
|
||||||
"http://pkg-isocodes.alioth.debian.org/downloads/iso-codes-"
|
"https://pkg-isocodes.alioth.debian.org/downloads/iso-codes-"
|
||||||
version ".tar.xz"))
|
version ".tar.xz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1ryk5i467p7xxrbrqynb35ci046yj9k9b4d3hfxzass962lz9q04"))))
|
"037hmfs5pk3g36psm378vap1mbrkk86vv8wsdnv65mzbnph52gv0"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(inputs
|
(inputs
|
||||||
`(("gettext" ,gnu-gettext)
|
`(("gettext" ,gnu-gettext)
|
||||||
("perl" ,perl)
|
("perl" ,perl)
|
||||||
("python-2" ,python-2)))
|
("python" ,python-wrapper)))
|
||||||
(home-page "http://pkg-isocodes.alioth.debian.org/")
|
(home-page "https://pkg-isocodes.alioth.debian.org/")
|
||||||
(synopsis "Various ISO standards")
|
(synopsis "Various ISO standards")
|
||||||
(description
|
(description
|
||||||
"This package provides lists of various ISO standards (e.g. country,
|
"This package provides lists of various ISO standards (e.g. country,
|
||||||
|
|
Loading…
Reference in a new issue