mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-12 14:16:55 -05:00
gnu: libidn2: Update to 2.0.2.
* gnu/packages/libidn.scm (libidn2): Update to 2.0.2. [source]: The tarball is now ".lz" compressed. [native-inputs]: Add LZIP.
This commit is contained in:
parent
e7ee50f2d2
commit
9b5fccbc48
1 changed files with 6 additions and 3 deletions
|
@ -20,6 +20,7 @@
|
||||||
|
|
||||||
(define-module (gnu packages libidn)
|
(define-module (gnu packages libidn)
|
||||||
#:use-module (gnu packages)
|
#:use-module (gnu packages)
|
||||||
|
#:use-module (gnu packages compression)
|
||||||
#:use-module (gnu packages libunistring)
|
#:use-module (gnu packages libunistring)
|
||||||
#:use-module (guix licenses)
|
#:use-module (guix licenses)
|
||||||
#:use-module (guix packages)
|
#:use-module (guix packages)
|
||||||
|
@ -53,14 +54,16 @@ (define-public libidn
|
||||||
(define-public libidn2
|
(define-public libidn2
|
||||||
(package
|
(package
|
||||||
(name "libidn2")
|
(name "libidn2")
|
||||||
(version "2.0.1")
|
(version "2.0.2")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "mirror://gnu/libidn/" name "-" version
|
(uri (string-append "mirror://gnu/libidn/" name "-" version
|
||||||
".tar.xz"))
|
".tar.lz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0irz2wlzdllpxr2w7lglryj88fy2ww3ilv7ang5d0s30jddjbg45"))))
|
"0pqaj8d01aj4i110669fincqs10kgynyqcrmq2q7pss8v9dcd1jq"))))
|
||||||
|
(native-inputs
|
||||||
|
`(("lzip" ,lzip)))
|
||||||
(inputs
|
(inputs
|
||||||
`(("libunistring" ,libunistring)))
|
`(("libunistring" ,libunistring)))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
|
|
Loading…
Reference in a new issue