diff options
author | Bruno Victal <mirai@makinata.eu> | 2023-10-09 21:06:12 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2024-08-31 10:42:09 +0200 |
commit | f678c5f932a0dec3a22abc6a3feb608be59225e6 (patch) | |
tree | 53ad49b96e6a558339048376028efa62a1ef2c1f /gnu/packages/xml.scm | |
parent | 3fab3a64393f16d0aba79e349abcb1a9abfb0352 (diff) | |
download | guix-f678c5f932a0dec3a22abc6a3feb608be59225e6.tar guix-f678c5f932a0dec3a22abc6a3feb608be59225e6.tar.gz |
gnu: xmlto: Add libxslt native-search-paths to its own.
Otherwise when xmlto invokes xsltproc it will fail to find the XML catalog
files.
* gnu/packages/xml.scm (xmlto)[native-search-paths]: Add libxslt
native-search-paths to its own.
Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
Diffstat (limited to 'gnu/packages/xml.scm')
-rw-r--r-- | gnu/packages/xml.scm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gnu/packages/xml.scm b/gnu/packages/xml.scm index 604d05e1ea..561abfdf09 100644 --- a/gnu/packages/xml.scm +++ b/gnu/packages/xml.scm @@ -1155,6 +1155,7 @@ code for classes that correspond to data structures defined by XMLSchema.") (list util-linux ; for 'getopt' libxml2 ; for 'xmllint' libxslt)) ; for 'xsltproc' + (native-search-paths %libxslt-search-paths) (home-page "http://cyberelk.net/tim/software/xmlto/") (synopsis "Front-end to an XSL toolchain") (description |