summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorλx.x <case_lambda@disroot.org>2025-12-27 15:19:34 +0300
committer宋文武 <iyzsong@member.fsf.org>2025-12-28 20:01:02 +0800
commitacdee26a3ac510a1369c21b3f33aadc133406e6a (patch)
treee455d565b149d0f2a424e219418944c56d9adcaa
parente2d507e4c13fccde1ca06a905540b4554b118ba8 (diff)
gnu: Add Atkinson Hyperlegible Mono.
* gnu/packages/fonts.scm (font-atkinson-hyperlegible-mono): New variable. Closes: guix/guix#5161 Change-Id: Ie024afddf5cce460906b80b5a6f3abc8c849f008 Signed-off-by: 宋文武 <iyzsong@member.fsf.org>
-rw-r--r--gnu/packages/fonts.scm28
1 files changed, 28 insertions, 0 deletions
diff --git a/gnu/packages/fonts.scm b/gnu/packages/fonts.scm
index 2cdf6fc9dfc..4fba2efe93d 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
603and italic, allowing for greater flexibility in use.") 603and italic, allowing for greater flexibility in use.")
604 (license license:silofl1.1)))) 604 (license license:silofl1.1))))
605 605
606(define-public font-atkinson-hyperlegible-mono
607 (let ((commit "154d50362016cc3e873eb21d242cd0772384c8f9")
608 (revision "0"))
609 (package
610 (name "font-atkinson-hyperlegible-mono")
611 (version (git-version "2.001" revision commit))
612 (source
613 (origin
614 (method git-fetch)
615 (uri (git-reference
616 (url
617 "https://github.com/googlefonts/atkinson-hyperlegible-next-mono/")
618 (commit commit)))
619 (file-name (git-file-name name version))
620 (sha256
621 (base32 "0bdhp70zniqnj14raw9krb034zrvvxhzimzqys713p8ksrndck2p"))))
622 (build-system font-build-system)
623 (home-page "https://www.brailleinstitute.org/freefont/")
624 (synopsis
625 "Monospace typeface designed to increase legibility for low vision readers")
626 (description
627 "Atkinson Hyperlegible Mono is an entirely new typeface inspired by
628Atkinson Hyperlegible. The characters in a monospace typeface all occupy the
629same width, allowing for them to be scanned quickly in table-based and coding
630environments. The glyphs in Atkinson Hyperlegible Mono are newly created for
631this variation, and unique to the typeface.")
632 (license license:silofl1.1))))
633
606(define-public font-lato 634(define-public font-lato
607 (package 635 (package
608 (name "font-lato") 636 (name "font-lato")