diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-11 00:04:52 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-11 14:39:53 +0200 |
commit | ea5bfed9cbdb2551e596db610160658e252208b5 (patch) | |
tree | ec1c16b6c9db3a42a739136762f927c1768e89ea /gnu | |
parent | 91f0d29c47d552680707c423996c5604ecebab00 (diff) | |
download | guix-ea5bfed9cbdb2551e596db610160658e252208b5.tar.gz guix-ea5bfed9cbdb2551e596db610160658e252208b5.zip |
gnu: Add texlive-translation-ecv-de.
* gnu/packages/tex.scm (texlive-translation-ecv-de): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/tex.scm | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index ed69c03328..4f779c97c5 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -36686,6 +36686,22 @@ BibLaTeX.") "This is a German translation of the @code{chemsym} documentation.") (license license:lppl))) +(define-public texlive-translation-ecv-de + (package + (name "texlive-translation-ecv-de") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/translation-ecv-de/") + (base32 + "06b4vhsgdphi6kdh5x4a2kl74b64z3y5qzxcpkn0hj40038z1av7"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/translation-ecv-de") + (synopsis "@code{ecv} documentation, in German") + (description "This is a German translation of the @code{ecv} documentation.") + (license license:lppl))) + (define-public texlive-translations (package (name "texlive-translations") |