diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-14 18:56:53 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-14 19:08:31 +0200 |
commit | 3ecefe63e0d347a169fe0b9ae24935f488d61338 (patch) | |
tree | 648cd68c45c0a20a92d55a5fe6041724e4e05c0f /gnu/packages | |
parent | 44156abc69fbb87614b49c509044dc168c439bac (diff) | |
download | guix-3ecefe63e0d347a169fe0b9ae24935f488d61338.tar guix-3ecefe63e0d347a169fe0b9ae24935f488d61338.tar.gz |
gnu: Add texlive-talos.
* gnu/packages/tex.scm (texlive-talos): New variable.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/tex.scm | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 695c544819..980c92d4d7 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -12840,6 +12840,27 @@ required.") position is already further along, @code{\\tabto} starts a new line.") (license license:public-domain))) +(define-public texlive-talos + (package + (name "texlive-talos") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/fonts/talos/" + "fonts/opentype/public/talos/") + (base32 + "1m656d4lkc9ikp7gb91yna4323lip3xcr6n3kqh1j4sqvp4rkm61"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/talos") + (synopsis "Greek cult font from the eighties") + (description + "This package provides a cult Greek font from the eighties, used at the +University of Crete, Greece. It belonged to the first TeX installation in +a Greek University and most probably the first TeX installation that supported +the Greek language.") + (license license:gfl1.0))) + (define-public texlive-termmenu (package (name "texlive-termmenu") |