diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-20 11:09:53 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-20 11:17:49 +0200 |
commit | 92ca4ac79b1741af6c084f3e79715c45b7cce08a (patch) | |
tree | b9d03813a75f30bc012b1b8bc1a421480c7d4cc4 /gnu/packages | |
parent | 2efd2a8d114fd50cc0cb98184c01b8c6b397ca24 (diff) | |
download | guix-92ca4ac79b1741af6c084f3e79715c45b7cce08a.tar.gz |
gnu: Add texlive-zztex.
* gnu/packages/tex.scm (texlive-zztex): New variable.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/tex.scm | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 969c36d41e..1c6226fdd1 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -4063,6 +4063,25 @@ features allow to deal with numbers (tests, display, some high level operations, etc.)") (license license:lppl1.3+))) +(define-public texlive-zztex + (package + (name "texlive-zztex") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/plain/zztex/" "tex/plain/zztex/") + (base32 + "07vx3m2g4vl2v1nxxy5dih67jg406y2i94sgkrmplm54b0pp42g3"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/zztex") + (synopsis "TeX macro package for producing books, journals, and manuals") + (description + "The ZzTeX macro package is a full-featured TeX macro package specially +designed for producing books, journals, and manuals. ZzTeX runs under Plain +TeX.") + (license license:expat))) + (define-public texlive-lcdftypetools (package (name "texlive-lcdftypetools") |