From 8f3d532e7cadec08e45c7ade0903db68b2932e95 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Tue, 29 Aug 2023 15:49:27 +0200 Subject: [PATCH] gnu: Add texlive-esint. * gnu/packages/tex.scm (texlive-esint): New variable. --- gnu/packages/tex.scm | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index a863ab77ff..4ada9d7f59 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -80935,6 +80935,32 @@ (define-public texlive-esindex characters in any encoding, and without Babel.") (license license:expat))) +(define-public texlive-esint + (package + (name "texlive-esint") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/esint/" + "fonts/source/public/esint/" + "fonts/tfm/public/esint/" + "source/latex/esint/" "tex/latex/esint/") + (base32 + "172c4ggjkpysfvg0kgcx77lr8md58nvppv0pj6fnrx3lnrvpzvzk"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (native-inputs (list texlive-metafont)) + (home-page "https://ctan.org/pkg/esint") + (synopsis "Extended set of integrals for Computer Modern") + (description + "The esint package permits access to alternate integral symbols when you are +using the Computer Modern fonts. In the original set, several integral +symbols are missing, such as @code{\\oiint}. Many of these symbols are +available in other font sets (@code{pxfonts}, @code{txfonts}, etc.), but there +is no good solution if you want to use Computer Modern. The package provides +Metafont source and LaTeX macro support.") + (license license:lppl))) + ;;; ;;; Avoid adding new packages to the end of this file. To reduce the chances ;;; of a merge conflict, place them above by existing packages with similar