diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-05-17 11:29:06 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-18 18:12:25 +0200 |
commit | ccca8fbac616e3d1a02cc6909d3375fbdf0a0df6 (patch) | |
tree | c03d52383a4de04ef3eb1d3c66231c5878b7037f /gnu/packages | |
parent | 124d6cf6c93da5690a92c17b4244298f4d196fda (diff) | |
download | guix-ccca8fbac616e3d1a02cc6909d3375fbdf0a0df6.tar.gz guix-ccca8fbac616e3d1a02cc6909d3375fbdf0a0df6.zip |
gnu: Add texlive-manfnt-font.
* gnu/packages/tex.scm (texlive-manfnt-font): New variable.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/tex.scm | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 6b5082af24..41b130b8dd 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -4775,6 +4775,26 @@ definitions.") the Knuth's manual font, such as the Dangerous Bend and Manual-errata Arrow.") (license license:lppl))) +(define-public texlive-manfnt-font + (package + (name "texlive-manfnt-font") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "fonts/afm/hoekwater/manfnt-font/" + "fonts/map/dvips/manfnt-font/" + "fonts/type1/hoekwater/manfnt-font/") + (base32 + "1cdd2a3xj00bwsby9z5iz5f2iy2iwsjl35gcack9q83hacbf3ssb"))) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/manual") + (synopsis "Knuth's manual fonts") + (description + "This package provides METAFONT (by Donald Knuth) and Adobe Type 1 (by +Taco Hoekwater) versions of the font containing the odd symbols Knuth uses in +his books. LaTeX support is available using the @code{manfnt} package.") + (license license:knuth))) + (define-public texlive-mathdots (package (name "texlive-mathdots") |