diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-21 10:57:54 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-21 16:28:42 +0200 |
commit | 9f3006847cff51a82e05e9636f138cfdb592eeb5 (patch) | |
tree | 226bdb4f19fba9a004d2b7b01f58a10ef94cb2b2 | |
parent | 201e1924d75dc69372bb1100e9df7fdb88a8eda2 (diff) | |
download | guix-9f3006847cff51a82e05e9636f138cfdb592eeb5.tar.gz guix-9f3006847cff51a82e05e9636f138cfdb592eeb5.zip |
gnu: Add texlive-baskervaldx.
* gnu/packages/tex.scm (texlive-baskervaldx): 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 7009b3e85d..8d04dd28e0 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -3744,6 +3744,34 @@ italic or oblique shapes in each of regular, bold and heavy weights. All fonts include the slashed zero and additional non-standard ligatures.") (license license:lppl))) +(define-public texlive-baskervaldx + (package + (name "texlive-baskervaldx") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/fonts/baskervaldx/" + "fonts/afm/public/baskervaldx/" + "fonts/enc/dvips/baskervaldx/" + "fonts/map/dvips/baskervaldx/" + "fonts/opentype/public/baskervaldx/" + "fonts/tfm/public/baskervaldx/" + "fonts/type1/public/baskervaldx/" + "fonts/vf/public/baskervaldx/" + "tex/latex/baskervaldx/") + (base32 + "1qszqzpy9bdqajd1h7cha0xm0kgy21q9yzsrrgwygchkz9zv6r66"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/baskervaldx") + (synopsis "Extension and modification of BaskervaldADF with LaTeX support") + (description + "This package extends and modifies the BaskervaldADF font (a Baskerville +substitute) with more accented glyphs, with small caps and oldstyle figures in +all shapes. It includes OpenType and PostScript fonts, as well as LaTeX +support files.") + (license (list license:gpl2+ license:lppl1.3+)))) + (define-public texlive-basque-book (package (name "texlive-basque-book") |