diff options
author | Leo Famulari <leo@famulari.name> | 2024-07-13 13:09:35 -0400 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2024-08-31 10:45:43 +0200 |
commit | fc91a71c779318f0e06884548f090f37d370a91b (patch) | |
tree | ac93bb7bc0c3f7b3f49b86348e5c110009117b77 | |
parent | 8a20f58420ff62cf2e9daeaf88d8ec1dfecb81b4 (diff) | |
download | guix-fc91a71c779318f0e06884548f090f37d370a91b.tar.gz guix-fc91a71c779318f0e06884548f090f37d370a91b.zip |
gnu: LibreOffice: Build with libxcrypt.
Glibc 2.38 no longer includes libcrypt by default, so we provide this
functionality via libxcrypt.
https://sourceware.org/glibc/wiki/Release/2.38#Building_libcrypt_is_disabled_by_default
* gnu/packages/libreoffice.scm (libreoffice)[inputs]: Add libxcrypt.
Change-Id: I3c9e02abb420a710d3a71bf137187dd989eb0398
-rw-r--r-- | gnu/packages/libreoffice.scm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gnu/packages/libreoffice.scm b/gnu/packages/libreoffice.scm index a6d84007e8..ed8dfd432b 100644 --- a/gnu/packages/libreoffice.scm +++ b/gnu/packages/libreoffice.scm @@ -52,6 +52,7 @@ #:use-module (gnu packages check) #:use-module (gnu packages compression) #:use-module (gnu packages cpp) + #:use-module (gnu packages crypto) #:use-module (gnu packages cups) #:use-module (gnu packages curl) #:use-module (gnu packages cyrus-sasl) @@ -1136,6 +1137,7 @@ commonly called @code{ftoa} or @code{dtoa}.") libwebp libwpg libwps + libxcrypt libxrandr libxrender libxslt |