ngz pushed a commit to branch master
in repository guix.
commit 3adfa442b2d9cf0576632e472cacb54d74722551
Author: Nicolas Goaziou <[email protected]>
AuthorDate: Mon Aug 21 12:43:27 2023 +0200
gnu: Add texlive-mlmodern.
* gnu/packages/tex.scm (texlive-mlmodern): New variable.
---
gnu/packages/tex.scm | 24 ++++++++++++++++++++++++
1 file changed, 24 insertions(+)
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm
index bf32914b17..f79af0bed5 100644
--- a/gnu/packages/tex.scm
+++ b/gnu/packages/tex.scm
@@ -18755,6 +18755,30 @@ a XeLaTeX style file that makes it easier to achieve
the classic incunabula
look.")
(license (list license:silofl1.1 license:lppl1.3+))))
+(define-public texlive-mlmodern
+ (package
+ (name "texlive-mlmodern")
+ (version (number->string %texlive-revision))
+ (source (texlive-origin
+ name version
+ (list "doc/fonts/mlmodern/"
+ "fonts/map/dvips/mlmodern/"
+ "fonts/tfm/public/mlmodern/"
+ "fonts/type1/public/mlmodern/"
+ "tex/latex/mlmodern/")
+ (base32
+ "0cw802x67yqh6zlkf89pdjlx0r5lmwdca5vcqxmv24c5gx2bc666")))
+ (outputs '("out" "doc"))
+ (build-system texlive-build-system)
+ (home-page "https://ctan.org/pkg/mlmodern")
+ (synopsis
+ "Blacker Type 1 version of Computer Modern, with multilingual support")
+ (description
+ "MLModern is a text and math font family with (La)TeX support, based on
+the design of Donald Knuth's Computer Modern and the Latin Modern project. It
+avoids the spindliness of most other Type 1 versions of Computer Modern.")
+ (license license:lppl1.3c)))
+
(define-public texlive-mltex
(package
(name "texlive-mltex")