diff options
author | Rutger Helling <rhelling@mykolab.com> | 2017-11-11 09:23:51 +0100 |
---|---|---|
committer | Leo Famulari <leo@famulari.name> | 2017-11-18 12:30:18 -0500 |
commit | 42ca84be9260d6a1ce12847b89545882b112a2cd (patch) | |
tree | f878cdad684d55bb0c270bc10438f25d82c99707 | |
parent | a7963b495e43bbbf68a517892227f6a9b056b863 (diff) | |
download | guix-42ca84be9260d6a1ce12847b89545882b112a2cd.tar guix-42ca84be9260d6a1ce12847b89545882b112a2cd.tar.gz |
gnu: libreoffice: Remove GTK+ 2.
LibreOffice doesn't need to use both GTK+ 2 and GTK+ 3.
* gnu/packages/libreoffice.scm (libreoffice)[inputs]: Remove gtk+-2.
[configure-flags]: Add "--disable-gtk".
Signed-off-by: Leo Famulari <leo@famulari.name>
-rw-r--r-- | gnu/packages/libreoffice.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/libreoffice.scm b/gnu/packages/libreoffice.scm index 6750d840ab..7980ad2c68 100644 --- a/gnu/packages/libreoffice.scm +++ b/gnu/packages/libreoffice.scm @@ -890,7 +890,6 @@ and to return information on pronunciations, meanings and synonyms.") ("graphite2" ,graphite2) ("gst-plugins-base" ,gst-plugins-base) ("gtk+" ,gtk+) - ("gtk+-2" ,gtk+-2) ("harfbuzz" ,harfbuzz) ("hunspell" ,hunspell) ("hyphen" ,hyphen) @@ -1037,6 +1036,7 @@ and to return information on pronunciations, meanings and synonyms.") "--disable-coinmp" "--disable-firebird-sdbc" ; embedded firebird "--disable-gltf" + "--disable-gtk" ; disable use of GTK+ 2 "--without-doxygen"))) (home-page "https://www.libreoffice.org/") (synopsis "Office suite") |