diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-10 23:59:31 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-11 14:39:49 +0200 |
commit | e135f05064674f92b0adf09d7d337812cea85f81 (patch) | |
tree | 65905a542e899f5985c5e6b9e5c59c7262bc9891 /gnu | |
parent | abe5e21d089a1bce3fba699a4c7fe7fa77514e14 (diff) | |
download | guix-e135f05064674f92b0adf09d7d337812cea85f81.tar.gz |
gnu: Add texlive-lualatex-doc-de.
* gnu/packages/tex.scm (texlive-lualatex-doc-de): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/tex.scm | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 5e175ff4d1..c014f0c094 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -20555,6 +20555,26 @@ package provides the @code{\\luaexec} command and the @code{luacode} environments to help with these problems.") (license license:lppl1.3+))) +(define-public texlive-lualatex-doc-de + (package + (name "texlive-lualatex-doc-de") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/lualatex-doc-de/") + (base32 + "0vnmgs475bzbqi14m9sm45cwjfsbvbk45wkb8m73j1bnk7wg7hh4"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/lualatex-doc-de") + (synopsis "Guide to LuaLaTeX (German translation)") + (description + "The document is a German translation of the map/guide to the world of +LuaLaTeX. Coverage supports both new users and package developers. Apart +from the introductory material, the document gathers information from several +sources, and offers links to others.") + (license license:fdl1.3+))) + (define-public texlive-lualatex-math (package (name "texlive-lualatex-math") |