diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-14 16:38:29 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-14 19:08:29 +0200 |
commit | 68573b22b47c85d7fea9bd1296d483f58f40feca (patch) | |
tree | 48a84144344f1fa03968299cf2172740ab62e2f2 /gnu | |
parent | f3d33e65ad9a737b46e6df1f7ab55345ca592162 (diff) | |
download | guix-68573b22b47c85d7fea9bd1296d483f58f40feca.tar.gz |
gnu: Add texlive-greektex.
* gnu/packages/tex.scm (texlive-greektex): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/tex.scm | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 6b14865558..f0e6d1c649 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -11558,6 +11558,24 @@ commands and options are provided, in order to completely switch to the ancient way, such as @code{\\today}.") (license license:lppl))) +(define-public texlive-greektex + (package + (name "texlive-greektex") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/fonts/greektex/" "tex/latex/greektex/") + (base32 + "0zs3kakr7k261j876r1xpynvnmjjdn5rky0acfbcjxp7mmsqpmzn"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/greektex") + (synopsis "Fonts for typesetting Greek/English documents") + (description + "The fonts are based on Silvio Levy's classical Greek fonts; macros and +Greek hyphenation patterns for the fonts encoding are also provided.") + (license license:public-domain))) + (define-public texlive-gtl (package (name "texlive-gtl") |