diff options
author | Andreas Enge <andreas@enge.fr> | 2015-05-16 21:54:02 +0200 |
---|---|---|
committer | Andreas Enge <andreas@enge.fr> | 2015-05-16 22:21:04 +0200 |
commit | 269194c3c0ec86b9382b6abeeb0dbc35bd7ac2cc (patch) | |
tree | 16066fc8eebdd0ed6ad02d4cca02bf81e1ab3014 | |
parent | 57080fea86027c085997b6e320f6777ee9edd495 (diff) | |
download | guix-269194c3c0ec86b9382b6abeeb0dbc35bd7ac2cc.tar guix-269194c3c0ec86b9382b6abeeb0dbc35bd7ac2cc.tar.gz |
gnu: libcdr: Propagate inputs.
* gnu/packages/libreoffice.scm (libcdr): Move icu4c, lcms, librevenge and
zlib from 'inputs' to 'propagated-inputs'.
-rw-r--r-- | gnu/packages/libreoffice.scm | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/gnu/packages/libreoffice.scm b/gnu/packages/libreoffice.scm index 5739757ce9..18319b5d07 100644 --- a/gnu/packages/libreoffice.scm +++ b/gnu/packages/libreoffice.scm @@ -296,12 +296,13 @@ AbiWord documents.") (native-inputs `(("doxygen" ,doxygen) ("pkg-config" ,pkg-config))) - (inputs - `(("boost" ,boost) - ("icu4c" ,icu4c) + (propagated-inputs ; in Requires or Requires.private field of .pkg + `(("icu4c" ,icu4c) ("lcms" ,lcms) ("librevenge" ,librevenge) ("zlib" ,zlib))) + (inputs + `(("boost" ,boost))) (arguments ;; avoid triggering a build failure due to warnings `(#:configure-flags '("--disable-werror"))) |