From f598b0fb97db4352692843096c2e39993199b23c Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Mon, 19 Jun 2023 15:55:33 +0200 Subject: [PATCH] gnu: Add texlive-xeindex. * gnu/packages/tex.scm (texlive-xeindex): New variable. --- gnu/packages/tex.scm | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 83c06a7d70..ef757ed369 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -7335,6 +7335,27 @@ without any problem.") XeLaTeX and @code{babel}.") (license license:lppl1.3+))) +(define-public texlive-xeindex + (package + (name "texlive-xeindex") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/xelatex/xeindex/" + "tex/xelatex/xeindex/") + (base32 + "1sps9lrzm9y2rrin5pkgzyk56c77xnydvp21ljmvsimqgafr5aqb"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/xeindex") + (synopsis "Automatic index generation for XeLaTeX") + (description + "The package is based on XeSearch, and will automatically index words or +phrases in an XeLaTeX document. Words are declared in a list, and every +occurrence then creates an index entry whose content can be fully specified +beforehand.") + (license license:lppl))) + (define-public texlive-currfile (package (name "texlive-currfile")