From acdee26a3ac510a1369c21b3f33aadc133406e6a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=CE=BBx=2Ex?= Date: Sat, 27 Dec 2025 15:19:34 +0300 Subject: [PATCH] gnu: Add Atkinson Hyperlegible Mono. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * gnu/packages/fonts.scm (font-atkinson-hyperlegible-mono): New variable. Closes: guix/guix#5161 Change-Id: Ie024afddf5cce460906b80b5a6f3abc8c849f008 Signed-off-by: 宋文武 --- gnu/packages/fonts.scm | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/gnu/packages/fonts.scm b/gnu/packages/fonts.scm index 2cdf6fc9dfc3f5bbafc75d1fb066438547fbf795..4fba2efe93dc6f74265b3c691e3e91202c63e4b2 100644 --- a/gnu/packages/fonts.scm +++ b/gnu/packages/fonts.scm @@ -603,6 +603,34 @@ Additionally, the two previous weights has increased to six, all in upright and italic, allowing for greater flexibility in use.") (license license:silofl1.1)))) +(define-public font-atkinson-hyperlegible-mono + (let ((commit "154d50362016cc3e873eb21d242cd0772384c8f9") + (revision "0")) + (package + (name "font-atkinson-hyperlegible-mono") + (version (git-version "2.001" revision commit)) + (source + (origin + (method git-fetch) + (uri (git-reference + (url + "https://github.com/googlefonts/atkinson-hyperlegible-next-mono/") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0bdhp70zniqnj14raw9krb034zrvvxhzimzqys713p8ksrndck2p")))) + (build-system font-build-system) + (home-page "https://www.brailleinstitute.org/freefont/") + (synopsis + "Monospace typeface designed to increase legibility for low vision readers") + (description + "Atkinson Hyperlegible Mono is an entirely new typeface inspired by +Atkinson Hyperlegible. The characters in a monospace typeface all occupy the +same width, allowing for them to be scanned quickly in table-based and coding +environments. The glyphs in Atkinson Hyperlegible Mono are newly created for +this variation, and unique to the typeface.") + (license license:silofl1.1)))) + (define-public font-lato (package (name "font-lato")