From aa5089ca880122375a6f3f5a2c5ef487f7f611b4 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Tue, 22 Aug 2023 17:20:48 +0200 Subject: [PATCH] gnu: Add texlive-imakeidx. * gnu/packages/tex.scm (texlive-imakeidx): New variable. --- gnu/packages/tex.scm | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 5286e94109..19795587f4 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -17433,6 +17433,31 @@ (define-public texlive-imac provides a LaTeX package and a BibTeX style file.") (license license:gpl3+))) +(define-public texlive-imakeidx + (package + (name "texlive-imakeidx") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/imakeidx/" + "source/latex/imakeidx/" + "tex/latex/imakeidx/") + (base32 + "1s65kbzafx5q7519pbxjldb87flws0mgg76yxi7a5mgxrnkfy961"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/imakeidx") + (synopsis "Package for producing multiple indexes") + (description + "The package enables the user to produce and typeset one or more indexes +simultaneously with a document. The package is known to work in LaTeX +documents processed with pdfLaTeX, XeLaTeX and LuaLaTeX. If +@command{makeindex} is used for processing the index entries, no particular +setting up is needed. When using Xindy or other programs, it is necessary to +enable shell escape; shell escape is also needed if @command{splitindex} is +used.") + (license license:lppl1.3+))) + (define-public texlive-imtekda (package (name "texlive-imtekda")