From 5abed7ca3c611bbe30b59293f1837d62c08f05f4 Mon Sep 17 00:00:00 2001 From: Tim Van den Langenbergh Date: Tue, 7 Jul 2020 16:38:41 +0200 Subject: gnu: Add font-libertinus. * gnu/packages/fonts.scm (font-libertinus): New variable. Signed-off-by: Tobias Geerinckx-Rice --- gnu/packages/fonts.scm | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) (limited to 'gnu') 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 ;;; Copyright © 2020 Zhu Zihao ;;; Copyright © 2020 Simen Endsjø +;;; Copyright © 2020 Tim Van den Langenbergh ;;; ;;; 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") -- cgit v1.2.3