diff options
author | Tim Van den Langenbergh <tmt_vdl@gmx.com> | 2020-07-07 16:38:41 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2020-07-09 14:53:33 +0200 |
commit | 5abed7ca3c611bbe30b59293f1837d62c08f05f4 (patch) | |
tree | 08c14bb0af8dac72a88f6c02fe236279b3bede47 /gnu/packages/fonts.scm | |
parent | b441238285d03219b24e26478afcc7d7880621dd (diff) | |
download | guix-5abed7ca3c611bbe30b59293f1837d62c08f05f4.tar.gz |
gnu: Add font-libertinus.
* gnu/packages/fonts.scm (font-libertinus): New variable. Signed-off-by: Tobias Geerinckx-Rice <me@tobias.gr>
Diffstat (limited to 'gnu/packages/fonts.scm')
-rw-r--r-- | gnu/packages/fonts.scm | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/gnu/packages/fonts.scm b/gnu/packages/fonts.scm index ed9b634bc3..e8ce8a2ab1 100644 --- a/gnu/packages/fonts.scm +++ b/gnu/packages/fonts.scm @@ -36,6 +36,7 @@ ;;; Copyright © 2020 Julien Lepiller <julien@lepiller.eu> ;;; Copyright © 2020 Zhu Zihao <all_but_last@163.com> ;;; Copyright © 2020 Simen Endsjø <simendsjo@gmail.com> +;;; Copyright © 2020 Tim Van den Langenbergh <tmt_vdl@gmx.com> ;;; ;;; This file is part of GNU Guix. ;;; @@ -384,6 +385,35 @@ Biolinum is available in both Regular and Bold weights.") ;; The fonts are released under either of these licenses. (license (list license:gpl2+ license:silofl1.1)))) +(define-public font-libertinus + (package + (name "font-libertinus") + (version "6.12") + (source + (origin + (method url-fetch) + (uri (string-append "https://github.com/alerque/libertinus/releases" + "/download/v" version "/libertinus-" version + ".zip")) + (sha256 + (base32 "06pcsd5pijjid7xjxak35jla089krm5hqnbglv8ldncq475q7kb2")))) + (build-system font-build-system) + (home-page "https://github.com/alerque/libertinus") + (synopsis "Font family based on Linux Libertine") + (description + "The Libertinus font family is a fork of Linux Libertine that addresses +many bugs in the unmaintained original and adds a new mathematical companion +font for use with OpenType math-capable applications like LuaTex or XeTeX. + +The unified Libertinus family consists of: +@enumerate +@item Libertinus Serif, forked from Linux Libertine; +@item Libertinus Sans Serif, forked from Linux Biolinum; +@item Libertinus Mono, forked from Linux Libertine Mono; and +@item Libertinus Math, an original matching OpenType math font. +@end enumerate\n") + (license license:silofl1.1))) + (define-public font-terminus (package (name "font-terminus") |