From c16cb2c050321ce8b56d8e63343c3011d85fba31 Mon Sep 17 00:00:00 2001 From: Ashvith Shetty Date: Fri, 22 Aug 2025 17:59:09 +0530 Subject: [PATCH] gnu: Add font-google-roboto-mono. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * gnu/packages/fonts.scm (font-google-roboto-mono): New variable. Closes: #2182 Change-Id: Ic3b6322faa12791bfef1f6d75ca26722de4362b2 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 1c23268946301d03bff0f97fc10305d618fd8e99..e1f80a13f7db7112c38366970abb69037a83a490 100644 --- a/gnu/packages/fonts.scm +++ b/gnu/packages/fonts.scm @@ -1581,6 +1581,31 @@ and Chrome OS, and the recommended font for the visual language \"Material Design\".") (license license:asl2.0))) +(define-public font-google-roboto-mono + (package + (name "font-google-roboto-mono") + (version "3.001") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googlefonts/RobotoMono") + (commit "8f651634e746da6df6c2c0be73255721d24f2372"))) + (file-name (git-file-name name version)) + (sha256 + (base32 "00ddmr7yvb9isakfvgv6g74m80fmg81dmh1hrrdyswapaa7858a5")))) + (build-system font-build-system) + (home-page "https://github.com/googlefonts/RobotoMono") + (synopsis "Monospaced Roboto font") + (description + "Roboto Mono is a monospaced addition to the Roboto type family. +Like the other members of the Roboto family, the fonts are optimized for +readability on screens across a wide variety of devices and reading +environments. While the monospaced version is related to its variable width +cousin, it doesn't hesitate to change forms to better fit the constraints of a +monospaced environment.") + (license license:silofl1.1))) + (define-public font-borg-sans-mono (package (name "font-borg-sans-mono")