From b8d2e4da67c4b7205fae443f5741a3c706309463 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Sun, 18 Jun 2023 18:41:14 +0200 Subject: [PATCH] gnu: Add texlive-context-typescripts. * gnu/packages/tex.scm (texlive-context-typescripts): 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 d96c9aee70..f483fc39d1 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -10581,6 +10581,27 @@ (define-public texlive-context-typearea LaTeX package @code{typearea} does.") (license license:gpl3+))) +(define-public texlive-context-typescripts + (package + (name "texlive-context-typescripts") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/context/third/typescripts/" + "tex/context/third/typescripts/") + (base32 + "0kz3flqyzg2p7lvr7yy1h1nmk368glzxxhwirizn5g4xv5sdf27b"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (propagated-inputs (list texlive-context)) + (home-page "https://ctan.org/pkg/context-typescripts") + (synopsis "Small modules to load various fonts for use in ConTeXt") + (description + "The package provides files offering interfaces to 33 publicly available +fonts (or collections of fonts from the same foundry); each is available in +a @file{.mkii} and a @file{.mkiv} version.") + (license license:gpl2))) + (define-public texlive-beamer (package (name "texlive-beamer")