diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-21 12:20:03 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-21 16:29:09 +0200 |
commit | 3384099cc4db65c10df07488a7c7c978b8cce74e (patch) | |
tree | 8cc3126c6987176eb11c4391d69911c44a55e653 | |
parent | 637646247b482e48cd4d67ad2da5b1779f001e5a (diff) | |
download | guix-3384099cc4db65c10df07488a7c7c978b8cce74e.tar.gz guix-3384099cc4db65c10df07488a7c7c978b8cce74e.zip |
gnu: Add texlive-garamond-libre.
* gnu/packages/tex.scm (texlive-garamond-libre): New variable.
-rw-r--r-- | gnu/packages/tex.scm | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index d95873b894..5867a6bdb8 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -12755,6 +12755,38 @@ the formatting of entries rather than their order. The two packages can be used together or separately.") (license license:lppl1.3+))) +(define-public texlive-garamond-libre + (package + (name "texlive-garamond-libre") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/fonts/garamond-libre/" + "fonts/enc/dvips/garamond-libre/" + "fonts/map/dvips/garamond-libre/" + "fonts/opentype/public/garamond-libre/" + "fonts/tfm/public/garamond-libre/" + "fonts/type1/public/garamond-libre/" + "fonts/vf/public/garamond-libre/" + "tex/latex/garamond-libre/") + (base32 + "0mmfxpdy2r5wd51b8f2l0qb7d6nncypzfs4bmimcm68s4l0rzsw4"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/garamond-libre") + (synopsis "Garamond Libre font face") + (description + "Garamond Libre is an old-style font family. It is a true Garamond, +i.e., it is based off the designs of 16th-century French engraver Claude +Garamond (also spelled Garamont). The Roman design is Garamond's; the italics +are from a design by Robert Granjon. The upright Greek font is after a design +by Firmin Didot; the italic Greek font is after a design by Alexander Wilson. +The font family includes support for Latin, Greek (monotonic and polytonic) +and Cyrillic scripts, as well as small capitals, old-style figures, superior +and inferior figures, historical ligatures, Byzantine musical symbols, the IPA +and swash capitals.") + (license (list license:expat license:lppl)))) + (define-public texlive-gastex (package (name "texlive-gastex") |