diff options
author | 宋文武 <iyzsong@gmail.com> | 2015-02-11 21:26:48 +0800 |
---|---|---|
committer | 宋文武 <iyzsong@gmail.com> | 2015-02-19 10:32:44 +0800 |
commit | c1944c92724cb1c1192c830a89501009a73431b0 (patch) | |
tree | 01fd6937f4a1ea6c44bff64322c860a27223e153 /gnu/packages/xml.scm | |
parent | 192c6f966fd7e7ecf3b828baee0da9ebc2026471 (diff) | |
download | guix-c1944c92724cb1c1192c830a89501009a73431b0.tar guix-c1944c92724cb1c1192c830a89501009a73431b0.tar.gz |
gnu: libxml2: Propagate input zlib.
* gnu/packages/xml.scm (libxml2): Move zlib to 'propagated-inputs'.
Diffstat (limited to 'gnu/packages/xml.scm')
-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 f2b3baa418..173435d2a5 100644 --- a/gnu/packages/xml.scm +++ b/gnu/packages/xml.scm @@ -65,7 +65,7 @@ things the parser might find in the XML document (like start tags).") (build-system gnu-build-system) (home-page "http://www.xmlsoft.org/") (synopsis "C parser for XML") - (inputs `(("zlib" ,zlib))) + (propagated-inputs `(("zlib" ,zlib))) ; libxml2.la says '-lz'. (native-inputs `(("perl" ,perl) ("python" ,python-2))) ; incompatible with Python 3 (print syntax) |