diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-10 09:25:06 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-11 14:39:43 +0200 |
commit | 77609bedf9086efc9c2e0e387d502680ced18264 (patch) | |
tree | 0657ea7352cafdb15c7f6c7bfc588ac74dab7dce /gnu | |
parent | 2af4a94ac45a94e20f44997526a507c54f469363 (diff) | |
download | guix-77609bedf9086efc9c2e0e387d502680ced18264.tar guix-77609bedf9086efc9c2e0e387d502680ced18264.tar.gz |
gnu: Add texlive-translation-array-fr.
* gnu/packages/tex.scm (texlive-translation-array-fr): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/tex.scm | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 261aed5720..3725be7169 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -8139,6 +8139,24 @@ to use the environment.") display calculators, specifically the TI-82 STATS.") (license license:lppl1.3c))) +(define-public texlive-translation-array-fr + (package + (name "texlive-translation-array-fr") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/translation-array-fr/") + (base32 + "128k8isyn4s0v496sykn22fqn0gfwyyk19kcrmxnc6clgxxfbdy6"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/translation-array-fr") + (synopsis "French translation of the documentation of @code{array}") + (description + "This package provides a French translation of the documentation of +@code{array}.") + (license license:lppl))) + (define-public texlive-turnstile (package (name "texlive-turnstile") |