diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-21 12:23:06 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-21 16:29:12 +0200 |
commit | 8c059ff67cbb3e42eed72a25a23e863534086d32 (patch) | |
tree | df3dd2ebce99d1e08ea106560c5393ed59f79856 | |
parent | 78c3982c61ff609455f1d7694c2a805d7ae1b458 (diff) | |
download | guix-8c059ff67cbb3e42eed72a25a23e863534086d32.tar.gz |
gnu: Add texlive-gofonts.
* gnu/packages/tex.scm (texlive-gofonts): New variable.
-rw-r--r-- | gnu/packages/tex.scm | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 9e85d1c15f..9226429bec 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -13390,6 +13390,34 @@ modulated stroke).") 19x19 board; the fonts are written in Metafont.") (license license:public-domain))) +(define-public texlive-gofonts + (package + (name "texlive-gofonts") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/fonts/gofonts/" + "fonts/enc/dvips/gofonts/" + "fonts/map/dvips/gofonts/" + "fonts/tfm/bh/gofonts/" + "fonts/truetype/bh/gofonts/" + "fonts/type1/bh/gofonts/" + "fonts/vf/bh/gofonts/" + "tex/latex/gofonts/") + (base32 + "07ysxm10xwg6cc781gdppidq1s87bqli4x6shkarjl29pxcncn61"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/gofonts") + (synopsis "GoSans and GoMono fonts with LaTeX support") + (description + "This package provides LaTeX, pdfLaTeX, XeLaTeX and LuaLaTeX support for +the GoSans and GoMono families of fonts designed by the Bigelow & Holmes +foundry. GoSans is available in three weights: Regular, Medium, and +Bold (with corresponding italics). GoMono is available in regular and bold, +with italics.") + (license (list license:bsd-3 license:lppl)))) + (define-public texlive-gost (package (name "texlive-gost") |