diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-14 18:58:18 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-14 19:08:31 +0200 |
commit | acc671acf78bfe91319b77b12658420d8f15f08c (patch) | |
tree | bd57ddeb71c90d11605d00a0a0b1148c6d79b17a /gnu | |
parent | e63f84ae80777ee1e3ccbfc3de7543a372382580 (diff) |
gnu: Add texlive-yannisgr.
* gnu/packages/tex.scm (texlive-yannisgr): New variable.
Diffstat (limited to 'gnu')
-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 ff9a22bdc0..47630066b4 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -13254,6 +13254,29 @@ features allow to deal with numbers (tests, display, some high level operations, etc.)") (license license:lppl1.3+))) +(define-public texlive-yannisgr + (package + (name "texlive-yannisgr") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/fonts/yannisgr/" + "fonts/source/public/yannisgr/" + "fonts/tfm/public/yannisgr/") + (base32 + "0s5cfid1r6jn34kzvmxwxyxpvyb0rayn80x3n7k515p1plqmmrnq"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (native-inputs (list texlive-levy texlive-metafont)) + (home-page "https://ctan.org/pkg/yannisgr") + (synopsis "Greek fonts by Yannis Haralambous") + (description + "This package provides a family of 7-bit fonts with a code table designed +for setting modern polytonic Greek. The fonts are provided as Metafont +source; macros to produce a Greek variant of Plain TeX (including +a hyphenation table adapted to the fonts code table) are provided.") + (license license:gpl2))) + (define-public texlive-zztex (package (name "texlive-zztex") |