me
/
guix
Archived
1
0
Fork 0

gnu: Add texlive-index.

* gnu/packages/tex.scm (texlive-index): New variable.
Nicolas Goaziou 2023-06-18 16:10:48 +02:00
parent 89193c050c
commit 2189b941be
No known key found for this signature in database
GPG Key ID: DA00B4F048E92F2D
1 changed files with 21 additions and 0 deletions

View File

@ -1008,6 +1008,27 @@ article into an exceptions file, together with a recent copy of the article
and machine-readable files.")
(license license:public-domain)))
(define-public texlive-index
(package
(name "texlive-index")
(version (number->string %texlive-revision))
(source (texlive-origin
name version
(list "bibtex/bst/index/" "doc/latex/index/"
"makeindex/index/" "source/latex/index/"
"tex/latex/index/")
(base32
"0f1infc8fcpw16crciampy4cqqhl4hzypyfacbwsk4cnl0fyivns")))
(outputs '("out" "doc"))
(build-system texlive-build-system)
(home-page "https://ctan.org/pkg/index")
(synopsis "Extended index for LaTeX including multiple indexes")
(description
"This is a reimplementation of LaTeX's indexing macros to provide better
support for indexing. For example, it supports multiple indexes in a single
document and provides a more robust @code{\\index} command.")
(license license:lppl1.2+))) ;from "index.dtx"
(define-public texlive-dvipdfmx
(package
(name "texlive-dvipdfmx")