summaryrefslogtreecommitdiff
path: root/gnu/packages
diff options
context:
space:
mode:
authorIan Henderson <ianhenderson@pm.me>2026-04-11 17:12:42 -0600
committer宋文武 <iyzsong@member.fsf.org>2026-04-19 09:49:22 +0800
commitfed54175a12448515952daf1b8934749cb43e634 (patch)
tree6d24d60df51865c14f9771ec195a03b2591d94f1 /gnu/packages
parent6d5a20bc05e1c9ac84454c9d56579b8dc904273f (diff)
gnu: Add font-open-sans.
* gnu/packages/fonts.scm (font-open-sans): New variable. Merges guix/guix!7833 Change-Id: I541f88b3745ea61d04d061200e08d31d4fb23466 Signed-off-by: 宋文武 <iyzsong@member.fsf.org>
Diffstat (limited to 'gnu/packages')
-rw-r--r--gnu/packages/fonts.scm33
1 files changed, 33 insertions, 0 deletions
diff --git a/gnu/packages/fonts.scm b/gnu/packages/fonts.scm
index 95f6e5ec7c5..1c0adcfb768 100644
--- a/gnu/packages/fonts.scm
+++ b/gnu/packages/fonts.scm
@@ -5559,6 +5559,39 @@ technical and idiosyncratic feel—perfect for headers and pull-quotes. Made to
5559work well together with Mona Sans.") 5559work well together with Mona Sans.")
5560 (license license:silofl1.1))) 5560 (license license:silofl1.1)))
5561 5561
5562(define-public font-open-sans
5563 (package
5564 (name "font-open-sans")
5565 (version "3.003")
5566 (source
5567 (origin
5568 (method git-fetch)
5569 (uri (git-reference
5570 (url "https://github.com/googlefonts/opensans")
5571 (commit "bd7e37632246368c60fdcbd374dbf9bad11969b6")))
5572 (file-name (git-file-name name version))
5573 (sha256
5574 (base32 "1mlnybaci1cr8z5xzxm7l2xpwfq27x9hqv649hc2ni1cjsyhpjp8"))))
5575 (build-system font-build-system)
5576 (arguments
5577 (list
5578 #:phases
5579 #~(modify-phases %standard-phases
5580 (replace 'install
5581 (lambda* (#:key outputs #:allow-other-keys)
5582 ;; Install the variable fonts only.
5583 (let ((%install (assoc-ref %standard-phases 'install)))
5584 (with-directory-excursion "fonts/variable"
5585 (%install #:outputs outputs))))))))
5586 (home-page "https://github.com/googlefonts/opensans")
5587 (synopsis "Humanist sans-serif typeface by Steve Matteson")
5588 (description
5589 "Open Sans is an open source humanist sans-serif typeface
5590that was designed by Steve Matteson under commission from Google. It was
5591released in 2011 and is based on his earlier design called Droid Sans, which
5592was specifically created for Android mobile devices but with slight
5593modifications to its width.")
5594 (license license:silofl1.1)))
5562 5595
5563(define-public font-peppercarrot 5596(define-public font-peppercarrot
5564 (package 5597 (package