diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-11 00:33:45 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-11 14:40:09 +0200 |
commit | 94aa4b1b18c357ca9035517f0c42d61ef9556124 (patch) | |
tree | 53dfda7f81403ca6f45b0ee85990ca9a1754d15d | |
parent | 426d4f8195d4d050608aa398859ae0a0bdbb4de8 (diff) | |
download | guix-94aa4b1b18c357ca9035517f0c42d61ef9556124.tar.gz |
gnu: Add texlive-latex2e-help-texinfo-spanish.
* gnu/packages/tex.scm (texlive-latex2e-help-texinfo-spanish): New variable.
-rw-r--r-- | gnu/packages/tex.scm | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index a9ddac432d..32a6f5a75b 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -5488,6 +5488,25 @@ and commands.") @code{latex2e-help-texinfo}.") (license license:public-domain))) +(define-public texlive-latex2e-help-texinfo-spanish + (package + (name "texlive-latex2e-help-texinfo-spanish") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/info/latex2e-es.info" + "doc/latex/latex2e-help-texinfo-spanish/") + (base32 + "1v3wa99phdmsiajbq0ad4h939cpwjwzpq88h6s0796h5fr34hrvq"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/latex2e-help-texinfo") + (synopsis "Spanish translation of @code{latex2e-help-texinfo}") + (description + "This package provides a complete Spanish translation of +@code{latex2e-help-texinfo}.") + (license license:public-domain))) + (define-public texlive-latexcheat-de (package (name "texlive-latexcheat-de") |