diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2021-05-04 15:09:55 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2021-05-04 15:17:17 +0200 |
commit | d7ef77c8edd8cbd53819384ae21442293fd3b8dd (patch) | |
tree | 63ce4e680d2b6f39ee7f8f23ba11a4a133a81375 /gnu/packages/tex.scm | |
parent | 50bc363a76e27f13c739f1eb5c8584d2dca1b498 (diff) | |
download | guix-d7ef77c8edd8cbd53819384ae21442293fd3b8dd.tar guix-d7ef77c8edd8cbd53819384ae21442293fd3b8dd.tar.gz |
gnu: Add texlive-eurosym.
* gnu/packages/tex.scm (texlive-eurosym): New variable.
Diffstat (limited to 'gnu/packages/tex.scm')
-rw-r--r-- | gnu/packages/tex.scm | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index a8634586e0..486b1a323b 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -8396,6 +8396,29 @@ theorems. The package supports saving and reuse of source code and text parts.") (license license:lppl1.3c+)))) +(define-public texlive-eurosym + (let ((template (simple-texlive-package + "texlive-eurosym" + (list "/doc/fonts/eurosym/" + "/fonts/map/dvips/eurosym/" + "/fonts/source/public/eurosym/" + "/fonts/tfm/public/eurosym/" + "/fonts/type1/public/eurosym/" + "/tex/latex/eurosym/eurosym.sty") + (base32 + "0ml24rxbl1yir4s3fjjxm0z7axklc3p33syg41b76zc7hck9mk8s") + #:trivial? #true))) + (package + (inherit template) + (home-page "https://www.ctan.org/pkg/eurosym") + (synopsis "METAFONT and macros for Euro sign") + (description "This package provides the European currency symbol for the +Euro implemented in METAFONT, using the official European Commission +dimensions, and providing several shapes (normal, slanted, bold, outline). +The package also includes a LaTeX package which defines the macro, +pre-compiled font files, and documentation.") + (license (license:non-copyleft "file:///doc/fonts/eurosym/COPYING"))))) + (define-public texlive-kastrup (package (name "texlive-kastrup") |