ngz pushed a commit to branch master
in repository guix.
commit f57a4704ed719801c8d84bfcee83efe1a3c37cca
Author: Nicolas Goaziou <[email protected]>
AuthorDate: Mon Aug 21 11:58:32 2023 +0200
gnu: Add texlive-concmath-fonts.
* gnu/packages/tex.scm (texlive-concmath-fonts): New variable.
---
gnu/packages/tex.scm | 22 ++++++++++++++++++++++
1 file changed, 22 insertions(+)
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm
index aa7841f4aa..b450431542 100644
--- a/gnu/packages/tex.scm
+++ b/gnu/packages/tex.scm
@@ -8850,6 +8850,28 @@ access the Concrete mathematics fonts, which were
derived from Computer Modern
math fonts using parameters from Concrete Roman text fonts.")
(license license:lppl)))
+(define-public texlive-concmath-fonts
+ (package
+ (name "texlive-concmath-fonts")
+ (version (number->string %texlive-revision))
+ (source (texlive-origin
+ name version
+ (list "doc/fonts/concmath-fonts/"
+ "fonts/source/public/concmath-fonts/"
+ "fonts/tfm/public/concmath-fonts/")
+ (base32
+ "09frgpcwpfkj9j9aaj5psb8kr12vgbr10plcvcipn0mjahdw9nnz")))
+ (outputs '("out" "doc"))
+ (build-system texlive-build-system)
+ (native-inputs (list texlive-amsfonts texlive-metafont))
+ (home-page "https://ctan.org/pkg/concmath-fonts")
+ (synopsis "Concrete mathematics fonts")
+ (description
+ "The fonts are derived from the Computer Modern Mathematics fonts and
+from Knuth's Concrete Roman fonts; they are distributed as Metafont source.
+LaTeX support is offered by the @code{concmath} package.")
+ (license license:lppl)))
+
(define-public texlive-concrete
(package
(name "texlive-concrete")