diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-11 00:05:51 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-11 14:39:54 +0200 |
commit | 7a93240d8d5f665ebf5dd0c2b226d85260672406 (patch) | |
tree | 2acfd747c67610be974f1b934068bbc968b3b555 /gnu | |
parent | 6acc334ba07ed020ec1afa2209d51c427cb58ff1 (diff) | |
download | guix-7a93240d8d5f665ebf5dd0c2b226d85260672406.tar guix-7a93240d8d5f665ebf5dd0c2b226d85260672406.tar.gz |
gnu: Add texlive-translation-moreverb-de.
* gnu/packages/tex.scm (texlive-translation-moreverb-de): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/tex.scm | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 951e2a02e2..bfedde5907 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -36753,6 +36753,23 @@ BibLaTeX.") "This is a German translation of the @code{filecontents} documentation.") (license license:lppl))) +(define-public texlive-translation-moreverb-de + (package + (name "texlive-translation-moreverb-de") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/translation-moreverb-de/") + (base32 + "1jbpmvcm9q73kh09mhrbsb2wlycwwm4n8il342hz4jd15gwhmy8f"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/translation-moreverb-de") + (synopsis "German version of @code{moreverb}") + (description + "This is a German translation of the @code{moreverb} documentation.") + (license license:lppl))) + (define-public texlive-translations (package (name "texlive-translations") |