diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-21 12:45:12 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-21 16:29:30 +0200 |
commit | 7990b2a21cd27c8aa1cab659ee205a3d82cc4897 (patch) | |
tree | c04e9957ddbc1f9da21589c81498cb7159515527 /gnu/packages | |
parent | a05c52019435707c80f8e72adcd50b34017cede0 (diff) | |
download | guix-7990b2a21cd27c8aa1cab659ee205a3d82cc4897.tar.gz |
gnu: Add texlive-newtxtt.
* gnu/packages/tex.scm (texlive-newtxtt): New variable.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/tex.scm | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index f4893614b4..5356950358 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -19568,6 +19568,30 @@ the STIX sans serif Roman and Greek letters with most symbols taken from @code{newtxmath}.") (license license:silofl1.1))) +(define-public texlive-newtxtt + (package + (name "texlive-newtxtt") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/fonts/newtxtt/" + "fonts/enc/dvips/newtxtt/" + "fonts/map/dvips/newtxtt/" + "fonts/tfm/public/newtxtt/" + "fonts/type1/public/newtxtt/" + "tex/latex/newtxtt/") + (base32 + "0x53dqf1mflh00r9v3zj2jqqbabk084zgcbz92x5icvmysrvk92a"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/newtxtt") + (synopsis "Enhancement of typewriter fonts from @code{newtx}") + (description + "The package provides enhanced fonts with LaTeX support files providing +access to the typewriter fonts from @code{newtx}. Regular and bold weights, +slanted variants and a choice of four different styles for zero.") + (license (list license:gpl3 license:lppl)))) + (define-public texlive-nicematrix (package (name "texlive-nicematrix") |