diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-21 12:21:38 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-21 16:29:10 +0200 |
commit | eac28979f9b6b2d0ef18e9c2a324388729527df2 (patch) | |
tree | 05a4d65a84b19927b920f27f97a15908679dc108 | |
parent | 38865f2f7da24dfa73442cfb84a9cd0d05270e04 (diff) | |
download | guix-eac28979f9b6b2d0ef18e9c2a324388729527df2.tar.gz |
gnu: Add texlive-gfsdidot.
* gnu/packages/tex.scm (texlive-gfsdidot): New variable.
-rw-r--r-- | gnu/packages/tex.scm | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index c3b1fa0b21..94b77c5b44 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -13041,6 +13041,36 @@ The Greek Font Society has released this version, which has a new set of majuscules.") (license license:silofl1.1))) +(define-public texlive-gfsdidot + (package + (name "texlive-gfsdidot") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/fonts/gfsdidot/" + "fonts/afm/public/gfsdidot/" + "fonts/enc/dvips/gfsdidot/" + "fonts/map/dvips/gfsdidot/" + "fonts/opentype/public/gfsdidot/" + "fonts/tfm/public/gfsdidot/" + "fonts/type1/public/gfsdidot/" + "fonts/vf/public/gfsdidot/" + "tex/latex/gfsdidot/") + (base32 + "1cnl5m6g3c7brkx9jfwx6lw83ypl5a7cjqjj4hyf65q12m4250db"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/gfsdidot") + (synopsis "Greek font based on Didot's work") + (description + "The design of Didot's 1805 Greek typeface was influenced by the +neoclassical ideals of the late 18th century. The font was brought to Greece +at the time of the 1821 Greek Revolution, by Didot's son, and was very widely +used. The font supports the Greek alphabet, and is accompanied by a matching +Latin alphabet based on Zapf's Palatino. LaTeX support is provided, using the +OT1, T1, TS1, and LGR encodings.") + (license license:silofl1.1))) + (define-public texlive-ghab (package (name "texlive-ghab") |