diff options
| author | Ian Henderson <ianhenderson@pm.me> | 2026-04-18 18:58:12 -0600 |
|---|---|---|
| committer | Hilton Chain <hako@ultrarare.space> | 2026-05-02 01:04:22 +0800 |
| commit | 13208905d9dbaf70c367a0b4a986c945c6b1d633 (patch) | |
| tree | 7d926f114c5f642ab189b60cf3ad199d7b86b0ce /nongnu | |
| parent | f0df3f3e9f7a842b1e4691b4ec0e584a2084fbe0 (diff) | |
nongnu: Add font-ubuntu-sans-mono.
* nongnu/packages/fonts.scm (font-ubuntu-sans-mono): New variable.
Signed-off-by: Hilton Chain <hako@ultrarare.space>
Modified-by: Hilton Chain <hako@ultrarare.space>
Diffstat (limited to 'nongnu')
| -rw-r--r-- | nongnu/packages/fonts.scm | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/nongnu/packages/fonts.scm b/nongnu/packages/fonts.scm index 171131a..24f6b14 100644 --- a/nongnu/packages/fonts.scm +++ b/nongnu/packages/fonts.scm @@ -404,3 +404,33 @@ 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")))) + +(define-public font-ubuntu-sans-mono + (package + (name "font-ubuntu-sans-mono") + (version "1.006") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/canonical/ubuntu-sans-mono-fonts") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1cfaj0dayxzldb90wjl1pmx8b1qghb9gw21b8abqsvk2xw02aax0")))) + (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-mono-fonts") + (synopsis "Ubuntu Sans Mono font family") + (description + "Ubuntu Sans Mono is a monospaced variant of the Ubuntu Sans typeface, +designed specifically for coding, terminal emulators, and other environments +where character alignment is critical.") + (license (nonfree "https://ubuntu.com/legal/font-licence")))) |
