diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-21 12:15:34 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-21 16:29:04 +0200 |
commit | 17ff9c1a4d10a399cae76fb9de176b405619a747 (patch) | |
tree | cbb67ba7072790a95a328dc3160c8528cd221cf5 | |
parent | 89b198c369ff153e559b8d4dc48c1743ab122245 (diff) | |
download | guix-17ff9c1a4d10a399cae76fb9de176b405619a747.tar.gz |
gnu: Add texlive-euxm.
* gnu/packages/tex.scm (texlive-euxm): New variable.
-rw-r--r-- | gnu/packages/tex.scm | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index aac0a16b90..c5a61a92f9 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -11567,6 +11567,25 @@ maths font. A style file @file{euler-math.sty} is provided as a replacement of the @code{eulervm} package for LuaLaTeX and XeLaTeX users.") (license (list license:silofl1.1 license:lppl1.3+)))) +(define-public texlive-euxm + (package + (name "texlive-euxm") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "fonts/source/public/euxm/" + "fonts/tfm/public/euxm/") + (base32 + "10dqknqlqrga9m2lgd74zx5hk4qcbkfvlzjgr304p94w3k7pclqc"))) + (build-system texlive-build-system) + (native-inputs (list texlive-metafont)) + (home-page "https://ctan.org/pkg/euxm") + (synopsis "Extended Euler") + (description + "This package extends Euler font to include two additional characters +needed for Concrete Math.") + (license license:knuth))) + (define-public texlive-evangelion-jfm (package (name "texlive-evangelion-jfm") |