ngz pushed a commit to branch master
in repository guix.
commit 9a4b2281767d3b1ba5df44f4dc558bee309f8806
Author: Nicolas Goaziou <[email protected]>
AuthorDate: Sun Jul 30 15:48:22 2023 +0200
gnu: Add texlive-concrete.
* gnu/packages/tex.scm (texlive-concrete): New variable.
---
gnu/packages/tex.scm | 26 ++++++++++++++++++++++++++
1 file changed, 26 insertions(+)
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm
index 2ab42c34ae..59371617cb 100644
--- a/gnu/packages/tex.scm
+++ b/gnu/packages/tex.scm
@@ -2712,6 +2712,32 @@ 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-concrete
+ (package
+ (name "texlive-concrete")
+ (version (number->string %texlive-revision))
+ (source (texlive-origin
+ name version
+ (list "doc/fonts/concrete/"
+ "fonts/source/public/concrete/"
+ "fonts/tfm/public/concrete/")
+ (base32
+ "0xras2ybr33xm27vl0ym3lyd954gizgyd6h84ivxg0zjpqpjanb1")))
+ (outputs '("out" "doc"))
+ (build-system texlive-build-system)
+ (native-inputs (list texlive-metafont))
+ (home-page "https://ctan.org/pkg/concrete")
+ (synopsis "Concrete Roman fonts")
+ (description
+ "This package provides Concrete Roman fonts, designed by Donald Knuth,
+originally for use with Euler mathematics fonts. Alternative mathematics
+fonts, based on the concrete parameter set are available as the
+@code{concmath} fonts bundle. LaTeX support is offered by the @code{beton},
+@code{concmath} and @code{ccfonts} packages. T1- and TS1-encoded versions of
+the fonts are available in the @code{ecc} bundle, and Adobe Type 1 versions of
+the @code{ecc} fonts are part of the @code{cm-super} bundle.")
+ (license license:knuth)))
+
(define-public texlive-crossrefenum
(package
(name "texlive-crossrefenum")