diff options
| author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-06-18 18:41:14 +0200 |
|---|---|---|
| committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-18 18:15:28 +0200 |
| commit | b8d2e4da67c4b7205fae443f5741a3c706309463 (patch) | |
| tree | b24d174980aed07f907644ef3599ca28a8a55ae0 | |
| parent | 52d02610f4e482bf046219bc804342ad7f799a1e (diff) | |
gnu: Add texlive-context-typescripts.
* gnu/packages/tex.scm (texlive-context-typescripts): New variable.
| -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 d96c9aee70..f483fc39d1 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -10581,6 +10581,27 @@ alphabet. The package can make allowance for hyphenation.") 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") |
