diff options
author | Andreas Enge <andreas@enge.fr> | 2015-05-16 22:01:25 +0200 |
---|---|---|
committer | Andreas Enge <andreas@enge.fr> | 2015-05-16 22:21:04 +0200 |
commit | e39cc72376981eb0178e83ea32813cfba5fdb430 (patch) | |
tree | af92a71e81d3b170e524420fc10707981a859292 | |
parent | c5b5800bb558eb3b99b065655b151b6fa2516469 (diff) | |
download | guix-e39cc72376981eb0178e83ea32813cfba5fdb430.tar.gz |
gnu: libmspub: Propagate inputs.
* gnu/packages/libreoffice.scm (libmspub): Move icu4c, 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 b856fe7efb..ff5b1747d1 100644 --- a/gnu/packages/libreoffice.scm +++ b/gnu/packages/libreoffice.scm @@ -400,11 +400,12 @@ Aldus/Macromedia/Adobe FreeHand 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) ("librevenge" ,librevenge) ("zlib" ,zlib))) + (inputs + `(("boost" ,boost))) (home-page "https://wiki.documentfoundation.org/DLP/Libraries/libmspub") (synopsis "Library for parsing the Microsoft Publisher format") (description "Libmspub is a library that parses the file format of |