summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Henderson <ianhenderson@pm.me>2026-04-18 18:38:00 -0600
committerHilton Chain <hako@ultrarare.space>2026-05-02 01:04:22 +0800
commitf0df3f3e9f7a842b1e4691b4ec0e584a2084fbe0 (patch)
treeb1a3cb4405217effe21acebe21966fbebc277d4c
parent662402e24188114a321599559d45c1b06ecce439 (diff)
nongnu: Add font-ubuntu-sans.
* nongnu/packages/fonts.scm (font-ubuntu-sans): New variable. Signed-off-by: Hilton Chain <hako@ultrarare.space> Modified-by: Hilton Chain <hako@ultrarare.space>
-rw-r--r--nongnu/packages/fonts.scm31
1 files changed, 31 insertions, 0 deletions
diff --git a/nongnu/packages/fonts.scm b/nongnu/packages/fonts.scm
index aeaadf9..171131a 100644
--- a/nongnu/packages/fonts.scm
+++ b/nongnu/packages/fonts.scm
@@ -373,3 +373,34 @@ an adjustable weight axis.")
;; https://bugs.launchpad.net/ubuntu-font-licence/+bug/769874
;; https://bugzilla.redhat.com/show_bug.cgi?id=961642#c4
(license (nonfree "https://ubuntu.com/legal/font-licence"))))
+
+(define-public font-ubuntu-sans
+ (package
+ (name "font-ubuntu-sans")
+ (version "1.006")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/canonical/Ubuntu-Sans-fonts")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "05xf44dxyb56kq0hvfg1yv2sgy1ijiaakqg6zvvlc9d0ld0wvw1y"))))
+ (build-system font-build-system)
+ (arguments
+ (list
+ #:phases
+ #~(modify-phases %standard-phases
+ (add-after 'unpack 'enter-font-directory
+ (lambda _
+ (chdir "fonts"))))))
+ (outputs '("out" "woff" "otf"))
+ (home-page "https://github.com/canonical/Ubuntu-Sans-fonts")
+ (synopsis "Ubuntu Sans font family")
+ (description
+ "Ubuntu Sans is a contemporary sans-serif typeface designed by Canonical,
+the makers of Ubuntu. It is part of the expanded Ubuntu font family and
+offers a clean, reliable, and free typographic voice for the operating
+system and its community.")
+ (license (nonfree "https://ubuntu.com/legal/font-licence"))))