diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-21 12:40:51 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-21 16:29:24 +0200 |
commit | 1dcfd89b8fd15d060c84ded0a6d0c7d117b67346 (patch) | |
tree | f0076959afa101c0267ce896eb0b10ff8ba6e84a /gnu | |
parent | 5bbbf06fe4aa912b9c52b0887f9800798b24589f (diff) |
gnu: Add texlive-magra.
* gnu/packages/tex.scm (texlive-magra): New variable.
Diffstat (limited to 'gnu')
-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 41d7f867b1..9d4eebd710 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -17777,6 +17777,30 @@ classes, @code{fiche} and @code{cours}, useful to create short high school documents such as tests or lessons. The documentation is in French.") (license license:gpl3+))) +(define-public texlive-magra + (package + (name "texlive-magra") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/fonts/magra/" + "fonts/enc/dvips/magra/" + "fonts/map/dvips/magra/" + "fonts/tfm/public/magra/" + "fonts/type1/public/magra/" + "fonts/vf/public/magra/" + "tex/latex/magra/") + (base32 + "0bbybiv6v05886qydj1c7l2ja520j15jgz6jz4g8qa58ycrls4kl"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/magra") + (synopsis "Magra font face with support for LaTeX and pdfLaTeX") + (description + "This package provides the Magra family of fonts designed by FontFuror, +with support for LaTeX and pdfLaTeX.") + (license (list license:silofl1.1 license:lppl)))) + (define-public texlive-mahjong (package (name "texlive-mahjong") |