diff options
Diffstat (limited to 'nongnu')
| -rw-r--r-- | nongnu/packages/fonts.scm | 31 |
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")))) |
