diff options
| author | brian cully <bjc@spork.org> | 2026-03-14 09:27:22 -0400 |
|---|---|---|
| committer | 宋文武 <iyzsong@member.fsf.org> | 2026-03-25 21:24:18 +0800 |
| commit | faa9be497600092024688f24ded3fa7174836f3b (patch) | |
| tree | ef80d4bbf504e767b79a6e4a3258745e793674bf /gnu | |
| parent | 4e0f628402ce6548910c22ce0208f7765a6ef24f (diff) | |
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>
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/fonts.scm | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/gnu/packages/fonts.scm b/gnu/packages/fonts.scm index 7acda533d3e..cfe94148a4f 100644 --- a/gnu/packages/fonts.scm +++ b/gnu/packages/fonts.scm @@ -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") |
