From b502e5e29f3e2070fa72317d9912ac3b37fa0b28 Mon Sep 17 00:00:00 2001 From: Foster Hangdaan Date: Sun, 23 Nov 2025 05:07:02 -0500 Subject: [PATCH] gnu: Add font-hubot-sans. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * gnu/packages/fonts.scm (font-hubot-sans): New variable. Closes: guix/guix#4407 Change-Id: I43e088555cc527a2a4f91783bc8efb7fe450a812 Signed-off-by: 宋文武 --- gnu/packages/fonts.scm | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/gnu/packages/fonts.scm b/gnu/packages/fonts.scm index e7c5be2893dee361ed65502bac8e03f381208620..4aaa8111758e27cdae2f69ed6c776efac27e51a5 100644 --- a/gnu/packages/fonts.scm +++ b/gnu/packages/fonts.scm @@ -5015,3 +5015,27 @@ in typical scalable font formats.") for code and text-editing in particular, and whenever having a fixed-pitch font is necessary, such as when composing tabular data using text.") (license license:silofl1.1))) + +(define-public font-hubot-sans + (package + (name "font-hubot-sans") + (version "1.0.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/github/hubot-sans") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "147srdhc0h9165f03kwlpsvm72qrsv0br31lspg9fy4jdjb7dxkp")))) + (build-system font-build-system) + (outputs '("out" "ttf" "woff")) + (home-page "https://github.com/mona-sans") + (synopsis "Variable font from Github") + (description + "Hubot Sans is designed with more geometric accents to lend a +technical and idiosyncratic feel—perfect for headers and pull-quotes. Made to +work well together with Mona Sans.") + (license license:silofl1.1)))