diff options
author | Mark H Weaver <mhw@netris.org> | 2016-06-08 13:29:32 -0400 |
---|---|---|
committer | Mark H Weaver <mhw@netris.org> | 2016-06-08 14:26:54 -0400 |
commit | 6e4f18cfdd1bf747e77f81b64497f1c05f57a057 (patch) | |
tree | 464e8a2ffb942d9e49a3dd2d472e6046c2b72738 /gnu/packages/xml.scm | |
parent | 98d9182205e6655a0a55f1eadc84a0c9a1cdd9fa (diff) | |
download | guix-6e4f18cfdd1bf747e77f81b64497f1c05f57a057.tar guix-6e4f18cfdd1bf747e77f81b64497f1c05f57a057.tar.gz |
gnu: libxml2: Add fix for CVE-2016-1762.
* gnu/packages/patches/libxml2-CVE-2016-1762.patch: New file.
* gnu/local.mk (dist_patch_DATA): Add it.
* gnu/packages/xml.scm (libxml2/fixed)[source]: Add patch.
Diffstat (limited to 'gnu/packages/xml.scm')
-rw-r--r-- | gnu/packages/xml.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/xml.scm b/gnu/packages/xml.scm index dc5c60dca8..40ff3e6b4b 100644 --- a/gnu/packages/xml.scm +++ b/gnu/packages/xml.scm @@ -116,7 +116,8 @@ project (but it is usable outside of the Gnome platform).") version ".tar.gz")) (sha256 (base32 - "0g336cr0bw6dax1q48bblphmchgihx9p1pjmxdnrd6sh3qci3fgz"))))))) + "0g336cr0bw6dax1q48bblphmchgihx9p1pjmxdnrd6sh3qci3fgz")) + (patches (search-patches "libxml2-CVE-2016-1762.patch"))))))) (define-public python-libxml2 (package (inherit libxml2) |