From faa9be497600092024688f24ded3fa7174836f3b Mon Sep 17 00:00:00 2001 From: brian cully Date: Sat, 14 Mar 2026 09:27:22 -0400 Subject: [PATCH] gnu: Add font-raleway. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * gnu/packages/fonts.scm (font-raleway): New variable. Closes: guix/guix#7158 Change-Id: I31e66e1f90bae2fb5e731b16ec2ee3ab88e044d5 Signed-off-by: 宋文武 --- gnu/packages/fonts.scm | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/gnu/packages/fonts.scm b/gnu/packages/fonts.scm index 7acda533d3..cfe94148a4 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")