aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher R. Nelson <christopher.nelson@languidights.com>2025-07-28 11:29:26 -0400
committerChristopher R. Nelson <christopher.nelson@languidights.com>2025-07-28 11:29:26 -0400
commitf31cda15d1c1567ec8ab9dd76e2a3285f667a258 (patch)
treeab40c042d7f4ca58d8c4530abf1aa998c6c90e17
parentfa8310b6048e527e23b3ccd1fecf2d05c03d6aaf (diff)
add Inter font
-rw-r--r--crn/packages/fonts.scm21
1 files changed, 21 insertions, 0 deletions
diff --git a/crn/packages/fonts.scm b/crn/packages/fonts.scm
index cf2236f..4faf31b 100644
--- a/crn/packages/fonts.scm
+++ b/crn/packages/fonts.scm
@@ -38,3 +38,24 @@ of glyphs (icons). Specifically to add a high number of extra glyphs
from popular ‘iconic fonts’ such as Font Awesome, Devicons, Octicons,
and others.")
(license licenses:expat)))
+
+(define-public font-inter
+ (package
+ (name "font-inter")
+ (version "4.1")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/rsms/inter")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "1g54vl3jkpan0s1mzrb1s8zjqzy9787ffjg9sfy6yjy4k3qg8xhx"))))
+ (build-system font-build-system)
+
+ (home-page "https://rsms.me/inter/")
+ (synopsis "The Inter font family")
+ (description
+"Inter is a typeface carefully crafted & designed for computer screens. Inter features a tall x-height to aid in readability of mixed-case and lower-case text. Inter is a variable font with several OpenType features, like contextual alternates that adjusts punctuation depending on the shape of surrounding glyphs, slashed zero for when you need to disambiguate \"0\" from \"o\", tabular numbers, etc.")
+ (license licenses:expat)))