diff options
author | Bruno Victal <mirai@makinata.eu> | 2023-10-09 21:06:30 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2024-08-31 10:42:12 +0200 |
commit | 44d6542e4bdbcce37c90f0ad1ea56954e47da6ad (patch) | |
tree | 6e8b7764b6c62891cea7726cd60852a73ea820e5 | |
parent | 28bfbdb74a27baf21c8aa0e9aa146fd6b563a0ae (diff) | |
download | guix-44d6542e4bdbcce37c90f0ad1ea56954e47da6ad.tar.gz guix-44d6542e4bdbcce37c90f0ad1ea56954e47da6ad.zip |
gnu: tdb: Build manpages.
* gnu/packages/databases.scm (tdb)[native-inputs]: Add docbook-xsl and
libxslt.
Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
-rw-r--r-- | gnu/packages/databases.scm | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/gnu/packages/databases.scm b/gnu/packages/databases.scm index 40002f788a..bf0fbf09c6 100644 --- a/gnu/packages/databases.scm +++ b/gnu/packages/databases.scm @@ -2051,10 +2051,8 @@ changes.") (invoke "./configure" (string-append "--prefix=" out)))))))) (native-inputs - (list ;; TODO: Build the documentation. - ;; ("docbook-xsl" ,docbook-xsl) - ;; ("libxml2" ,libxml2) - ;; ("libxslt" ,libxslt) + (list docbook-xsl + libxslt python ;for the Waf build system which)) (home-page "https://tdb.samba.org/") |