From 3e8aa64c0785d59449ed8bcfad8bb0131aa3d6c1 Mon Sep 17 00:00:00 2001 From: Lee Thompson Date: Tue, 11 Nov 2025 17:46:24 +0000 Subject: [PATCH] gnu: Add font-kawkab-mono. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * gnu/packages/fonts.scm (font-kawkab-mono): New variable. Closes: guix/guix#4195 Change-Id: Idb667ebf651bfcc3db2708134c4213142d4db6e0 Signed-off-by: 宋文武 --- gnu/packages/fonts.scm | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/gnu/packages/fonts.scm b/gnu/packages/fonts.scm index eab4cee2cf928c246673d9c16127a3899f12b79c..f4367ffdd099cde891d459fcdf6f7926671c4ce9 100644 --- a/gnu/packages/fonts.scm +++ b/gnu/packages/fonts.scm @@ -68,6 +68,7 @@ ;;; Copyright © 2025 Gabriel Santos ;;; Copyright © 2025 Liam Hupfer ;;; Copyright © 2025 Evgeny Pisemsky +;;; Copyright © 2025 Lee Thompson ;;; ;;; This file is part of GNU Guix. ;;; @@ -4992,3 +4993,25 @@ typeface. It is inspired by many 5×7 pixel grid typefaces, especially Gilles Boccon-Gibod’s MonteCarlo. Unlike traditional bitmap fonts, it is distributed in typical scalable font formats.") (license license:silofl1.1))) + +(define-public font-kawkab-mono + (package + (name "font-kawkab-mono") + (version "0.501") + (source + (origin + (method url-fetch) + (uri (string-append + "https://github.com/aiaf/kawkab-mono/releases/download/" + "v" version "/kawkab-mono-" version ".zip")) + (sha256 + (base32 "0rjn2kdfs81cbpnffxj0sgw6zav5503smjkldlbg1ynyvmbnzh0i")))) + (build-system font-build-system) + (outputs '("out" "ttf" "woff")) + (home-page "https://makkuk.com/kawkab-mono/") + (synopsis "Monospaced Arabic typeface") + (description + "Kawkab Mono (كوكب مونو) is a monospaced Arabic typeface. It is designed +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)))