diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-21 12:30:40 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-21 16:29:21 +0200 |
commit | 63ef57aee264f35d184bf0f46c15d587b9fa550e (patch) | |
tree | d0fab07b52f4531975e1e5d15ab685632b27aeee | |
parent | 9e02c13914c2fafd03044a68f5265a9c7cb24dc4 (diff) | |
download | guix-63ef57aee264f35d184bf0f46c15d587b9fa550e.tar.gz |
gnu: Add texlive-libertinus-fonts.
* gnu/packages/tex.scm (texlive-libertinus-fonts): New variable.
-rw-r--r-- | gnu/packages/tex.scm | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 53aa50f820..159067cb56 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -16444,6 +16444,28 @@ engine") fonts are similiar to Libertine and Biolinum, but come with math symbols.") (license license:lppl1.3+))) +(define-public texlive-libertinus-fonts + (package + (name "texlive-libertinus-fonts") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/fonts/libertinus-fonts/" + "fonts/opentype/public/libertinus-fonts/") + (base32 + "1g4y3v7i8bs1677rj56v3kw5q3nkl9ksljmly4m7n42dlpggxiaj"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/libertinus-fonts") + (synopsis "Libertinus font family") + (description + "This is a fork of the Linux Libertine and Linux Biolinum fonts that +started as an OpenType math companion of the Libertine font family, but grown +as a full fork. The family consists of Libertinus Serif, Libertinus Sans, +Libertinus Mono, and Libertinus Math, an OpenType math font for use in +OpenType math-capable applications.") + (license license:silofl1.1))) + (define-public texlive-lie-hasse (package (name "texlive-lie-hasse") |