diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2016-07-03 08:28:51 +0300 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2016-07-03 08:28:51 +0300 |
commit | 0562a81eae87b0ffe759535017d5283bfdebc918 (patch) | |
tree | 18f25f315f302ee29d6f0ec9c2e118f7d01bb4fb /gnu/packages/xml.scm | |
parent | c17489124e39a2f8ec502e97ff3efc1d512684f1 (diff) | |
download | guix-0562a81eae87b0ffe759535017d5283bfdebc918.tar guix-0562a81eae87b0ffe759535017d5283bfdebc918.tar.gz |
gnu: pugixml: Update to 1.7.
* gnu/packages/xml.scm (pugixml): Update to 1.7.
Diffstat (limited to 'gnu/packages/xml.scm')
-rw-r--r-- | gnu/packages/xml.scm | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/gnu/packages/xml.scm b/gnu/packages/xml.scm index 812539f397..6d91e1a1a7 100644 --- a/gnu/packages/xml.scm +++ b/gnu/packages/xml.scm @@ -569,16 +569,15 @@ server, collect the answer, and finally decoding the XML to Perl.") (define-public pugixml (package (name "pugixml") - (version "1.6") + (version "1.7") (source (origin (method url-fetch) - (uri (string-append "https://github.com/zeux/pugixml/archive/v" - version ".tar.gz")) - (file-name (string-append name "-" version ".tar.gz")) + (uri (string-append "https://github.com/zeux/pugixml/releases/download/v" + version "/pugixml-" version ".tar.gz")) (sha256 (base32 - "0czbcv9aqf2rw3s9cljz2wb1f4zbhd07wnj7ykklklccl0ipfnwi")))) + "1jpml475kbhs1aqwa48g2cbfxlrb9qp115m2j9yryxhxyr30vqgv")))) (build-system cmake-build-system) (arguments `(#:tests? #f |