diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-10 09:12:18 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-11 14:39:37 +0200 |
commit | 059a5fb70feca17946da55d2862d756cd3dd1022 (patch) | |
tree | 7db836044f8bbf120769763a04bd0c9ea01753c8 /gnu/packages | |
parent | 39c88684a2764c428af671020d8aff6ff3bc6ca6 (diff) |
gnu: Add texlive-epslatex-fr.
* gnu/packages/tex.scm (texlive-epslatex-fr): New variable.
Diffstat (limited to 'gnu/packages')
-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 bfd61b0ac4..0bce3126fd 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -3771,6 +3771,24 @@ you use any special symbols inside your command.") @url{https://www.eolang.org, EO} programming language.") (license license:expat))) +(define-public texlive-epslatex-fr + (package + (name "texlive-epslatex-fr") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/epslatex-fr/") + (base32 + "1xs9977g9g3i6sipkf7i9jdl8sdm69ci3161a4p7k66qbizi7zvb"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/fepslatex") + (synopsis "French version of @emph{Graphics in LaTeX}") + (description + "This is the French translation of @code{epslatex}, and describes how to +use imported graphics in LaTeX(2e) documents.") + (license license:gpl3+))) + (define-public texlive-eqexpl (package (name "texlive-eqexpl") |