diff options
author | Leo Famulari <leo@famulari.name> | 2018-01-13 09:55:42 -0800 |
---|---|---|
committer | Leo Famulari <leo@famulari.name> | 2018-01-16 10:28:20 -0800 |
commit | e428b2c026f47ff8f1f3f4db93f8925af7159fad (patch) | |
tree | 895e55ef978fa9896e2b9539a667f28cdf8c875e /gnu | |
parent | 7c3f22e9c3311dcb27e9b8bd31c6fa6eb0a549d8 (diff) | |
download | guix-e428b2c026f47ff8f1f3f4db93f8925af7159fad.tar guix-e428b2c026f47ff8f1f3f4db93f8925af7159fad.tar.gz |
gnu: python-libxml2: Inherit the replacement source of libxml2.
Previously, python-libxml2 would inherit the ungrafted libxml2, missing
several patches on the libxml2 source code.
* gnu/packages/xml.scm (python-libxml2, python2-libxml2): Use
package/inherit.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/xml.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/xml.scm b/gnu/packages/xml.scm index ce0d13a999..01a4353440 100644 --- a/gnu/packages/xml.scm +++ b/gnu/packages/xml.scm @@ -159,7 +159,7 @@ project (but it is usable outside of the Gnome platform).") "libxml2-CVE-2017-15412.patch"))))))) (define-public python-libxml2 - (package (inherit libxml2) + (package/inherit libxml2 (name "python-libxml2") (build-system python-build-system) (arguments |