diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-21 12:21:06 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-21 16:29:09 +0200 |
commit | a742be0828b905b372584b5b1784e0832ee5a3b9 (patch) | |
tree | da9edc7af42feabe963b279aa3eda1caf2263448 | |
parent | 48327e12bde22d31d7a5e07fbb5c8a63b6d5ca73 (diff) | |
download | guix-a742be0828b905b372584b5b1784e0832ee5a3b9.tar.gz guix-a742be0828b905b372584b5b1784e0832ee5a3b9.zip |
gnu: Add texlive-gfsartemisia.
* gnu/packages/tex.scm (texlive-gfsartemisia): New variable.
-rw-r--r-- | gnu/packages/tex.scm | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 9fe1c84d79..4815e391cd 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -12954,6 +12954,34 @@ need only genealogical symbols. The font is distributed as Metafont source.") of the History Faculty of the University of Freiburg (Germany).") (license license:lppl))) +(define-public texlive-gfsartemisia + (package + (name "texlive-gfsartemisia") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/fonts/gfsartemisia/" + "fonts/afm/public/gfsartemisia/" + "fonts/enc/dvips/gfsartemisia/" + "fonts/map/dvips/gfsartemisia/" + "fonts/opentype/public/gfsartemisia/" + "fonts/tfm/public/gfsartemisia/" + "fonts/type1/public/gfsartemisia/" + "fonts/vf/public/gfsartemisia/" + "tex/latex/gfsartemisia/") + (base32 + "09kk65sn5wj70dksrywszdbwg2gg9wzdy9m25xj09d8k7hdirayn"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/gfsartemisia") + (synopsis "Modern Greek font design") + (description + "GFS Artemisia is a relatively modern font, designed as a general purpose +font in the same sense as Times is nowadays treated. The font supports the +Greek and Latin alphabets. LaTeX support is provided, using the OT1, T1 and +LGR encodings.") + (license (list license:silofl1.1 license:lppl1.0+)))) + (define-public texlive-ghab (package (name "texlive-ghab") |