diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-10 09:25:30 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-11 14:39:43 +0200 |
commit | 98b73ff6c9551609d82d93f7864d1b98784c7cf4 (patch) | |
tree | ada5f7712c84d2d46247797cbd323ad634f5280b | |
parent | 21d782ab5c474b2fa9db0136887fd06016040fbf (diff) |
gnu: Add texlive-translation-tabbing-fr.
* gnu/packages/tex.scm (texlive-translation-tabbing-fr): New variable.
-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 5880b6a61e..d660e44727 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -8193,6 +8193,24 @@ display calculators, specifically the TI-82 STATS.") @code{natbib}.") (license license:lppl))) +(define-public texlive-translation-tabbing-fr + (package + (name "texlive-translation-tabbing-fr") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/translation-tabbing-fr/") + (base32 + "1cih442gp6zf8nwb2lbgjn7a64aglyrcw3aciqy5pkdw09pwn0an"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/translation-tabbing-fr") + (synopsis "French translation of the documentation of @code{tabbing}") + (description + "This package provides a translation to French of the documentation of +the @code{tabbing} package.") + (license license:lppl1.0+))) + (define-public texlive-turnstile (package (name "texlive-turnstile") |