diff options
author | Marius Bakke <mbakke@fastmail.com> | 2019-06-20 23:16:50 +0200 |
---|---|---|
committer | Marius Bakke <mbakke@fastmail.com> | 2019-06-20 23:56:59 +0200 |
commit | fc9e5973d6ffbf016dc09085467d146ad99e2f93 (patch) | |
tree | e0eb694b9d0fbb5f4679c8b34907e450a68c44e5 | |
parent | d0828b07573c547345632acc3220a532fdc7d6ba (diff) | |
download | guix-fc9e5973d6ffbf016dc09085467d146ad99e2f93.tar guix-fc9e5973d6ffbf016dc09085467d146ad99e2f93.tar.gz |
gnu: expat: Update to 2.2.7.
* gnu/packages/xml.scm (expat): Update to 2.2.7.
[source](uri): Use XZ compressed archive.
-rw-r--r-- | gnu/packages/xml.scm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/packages/xml.scm b/gnu/packages/xml.scm index e71448e8a7..8dce027827 100644 --- a/gnu/packages/xml.scm +++ b/gnu/packages/xml.scm @@ -65,14 +65,14 @@ (define-public expat (package (name "expat") - (version "2.2.6") + (version "2.2.7") (source (origin (method url-fetch) (uri (string-append "mirror://sourceforge/expat/expat/" - version "/expat-" version ".tar.bz2")) + version "/expat-" version ".tar.xz")) (sha256 (base32 - "1wl1x93b5w457ddsdgj0lh7yjq4q6l7wfbgwhagkc8fm2qkkrd0p")))) + "1y5yax6bq8p9xk49zqkd62pxk8bq266wrgbrqgaxp3wsrw5g9qrh")))) (build-system gnu-build-system) (home-page "https://libexpat.github.io/") (synopsis "Stream-oriented XML parser library written in C") |