From 5aa4f9a9603f5c3dd173fcb45a6bcfb960744c6b Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Tue, 29 Aug 2023 16:02:49 +0200 Subject: [PATCH] gnu: Add texlive-templatetools. * gnu/packages/tex.scm (texlive-templatetools): New variable. --- gnu/packages/tex.scm | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 952c07ec69..f1fb92a7ac 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -97555,6 +97555,27 @@ designed to work well even if strange tokens (that is, unusual in the list.") (license license:lppl))) +(define-public texlive-templatetools + (package + (name "texlive-templatetools") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/templatetools/" + "source/latex/templatetools/" + "tex/latex/templatetools/") + (base32 + "02gi82iqbm568rvyqlmg61lzifxl32fd4cmgk5i4aiw93im0s1al"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/templatetools") + (synopsis "Commands useful in LaTeX templates") + (description + "The package provides a collection of tools, which are helpful for the +creation of a LaTeX template if conditional paths for code execution are +required. All the commands work both in the preamble and in the document.") + (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