1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-06 21:20:33 +02:00

gnu: Add font-raleway.

* gnu/packages/fonts.scm (font-raleway): New variable.

Closes: guix/guix#7158
Change-Id: I31e66e1f90bae2fb5e731b16ec2ee3ab88e044d5
Signed-off-by: 宋文武 <iyzsong@member.fsf.org>
This commit is contained in:
brian cully
2026-03-14 09:27:22 -04:00
committed by 宋文武
parent 4e0f628402
commit faa9be4976

View File

@@ -1283,6 +1283,31 @@ ko (Korean) locales for @code{fontconfig}.")
;; GPLv2 with font embedding exception.
(license license:gpl2)))
(define-public font-raleway
(package
(name "font-raleway")
(version "4.101")
(source (origin
(method url-fetch)
(uri (string-append "https://github.com/theleagueof/raleway"
"/releases/download/"
version "/Raleway-" version ".tar.xz"))
(sha256
(base32
"1sykwr7s7rhny1m2wv8mdn826mwkigr9nqplg4z25d0q4k9p0c2j"))))
(build-system font-build-system)
(outputs '("out" "ttf" "woff"))
(arguments
'(#:license-file-regexp "^(OFL.*|README)\\.md$"))
(home-page "https://github.com/theleagueof/raleway")
(synopsis "Sans-Serif typeface family")
(description
"Raleway is a display face that features both old style and lining
numerals, standard and discretionary ligatures, a pretty complete set of
diacritics, as well as a stylistic alternate inspired by more geometric
sans-serif typefaces than its neo-grotesque inspired default character set.")
(license license:silofl1.1)))
(define-public font-wqy-microhei
(package
(name "font-wqy-microhei")