From 5a46339df22617646a41fdaa15e577818ccf2756 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Mon, 21 Aug 2023 10:52:22 +0200 Subject: [PATCH] gnu: Add texlive-asapsym. * gnu/packages/tex.scm (texlive-asapsym): New variable. --- gnu/packages/tex.scm | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 7cbacaf89a..332cf97eb6 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -3055,6 +3055,31 @@ package.") Koovit, with support for LaTeX and pdfLaTeX.") (license (list license:silofl1.1 license:lppl)))) +(define-public texlive-asapsym + (package + (name "texlive-asapsym") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/fonts/asapsym/" + "fonts/opentype/omnibus-type/asapsym/" + "source/fonts/asapsym/" + "tex/generic/asapsym/" + "tex/latex/asapsym/" + "tex/plain/asapsym/") + (base32 + "038adcagkzy1bj5y9i5a4i5kbyr3wg7w0lfhbbg9z7glqmivilic"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/asapsym") + (synopsis "Using the ASAP Symbol font with LaTeX and Plain TeX") + (description + "The package provides macros (usable with LaTeX or Plain TeX) for using +the ASAP Symbol font, which is also included. The font is distributed in +OpenType format, and makes extensive use of OpenType features. Therefore, at +this time, only XeTeX and LuaTeX are supported.") + (license license:lppl1.3+))) + (define-public texlive-ascii-chart (package (name "texlive-ascii-chart")