From 304d26bc1c25852c2e1de8776fe0a768165f0f3c Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Tue, 29 Aug 2023 15:45:50 +0200 Subject: [PATCH] gnu: Add texlive-chet. * gnu/packages/tex.scm (texlive-chet): New variable. --- gnu/packages/tex.scm | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 8437b7fe19..3e4638b4ca 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -75855,6 +75855,25 @@ (define-public texlive-checkend just use the package.") (license license:expat))) +(define-public texlive-chet + (package + (name "texlive-chet") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "bibtex/bst/chet/" "doc/latex/chet/" + "tex/latex/chet/") + (base32 + "1gkpp94l6843hxgana60rgs08qifdj7j68dv834p132hc3n08cbn"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/chet") + (synopsis "LaTeX layout inspired by @code{harvmac}") + (description + "The package aims to streamline the work of typesetting, and to provide the +look and feel of @code{harvmac} for readers.") + (license license:lppl1.3+))) + ;;; ;;; Avoid adding new packages to the end of this file. To reduce the chances ;;; of a merge conflict, place them above by existing packages with similar