This is an automated email from the git hooks/post-receive script.
guix_mirror_bot pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new 159394b848 gnu: Add font-miracode.
159394b848 is described below
commit 159394b84801b06f980c384053ee02ef19d10fb4
Author: Carlos Durán Domínguez <[email protected]>
AuthorDate: Tue Jan 20 00:58:14 2026 +0100
gnu: Add font-miracode.
* gnu/packages/fonts.scm (font-miracode): New variable.
Closes: guix/guix#5815
Change-Id: I28ad270420a45c84cac86f2b172f7aa4e7cf16fb
Signed-off-by: 宋文武 <[email protected]>
---
gnu/packages/fonts.scm | 41 +++++++++++++++++++++++++++++++++++++++++
1 file changed, 41 insertions(+)
diff --git a/gnu/packages/fonts.scm b/gnu/packages/fonts.scm
index 93fb995404..672c589d64 100644
--- a/gnu/packages/fonts.scm
+++ b/gnu/packages/fonts.scm
@@ -71,6 +71,7 @@
;;; Copyright © 2025 Lee Thompson <[email protected]>
;;; Copyright © 2025 Alexandre Hannud Abdo <[email protected]>
;;; Copyright © 2026 Luis Guilherme Coelho <[email protected]>
+;;; Copyright © 2026 Carlos Durán Domínguez <[email protected]>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -3596,6 +3597,46 @@ files (TTF).")
(home-page "https://software.sil.org/charis/")
(license license:silofl1.1)))
+(define-public font-miracode
+ (package
+ (name "font-miracode")
+ (version "1.0")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/IdreesInc/Miracode")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "0mr2lh26iyyzpzkna4xm5f99dada6agldxn0zh4cxk2pfm7bchmn"))))
+ (build-system gnu-build-system)
+ (native-inputs (list fontforge python))
+ (arguments
+ (list
+ #:tests? #f ;no tests
+ #:phases
+ #~(modify-phases %standard-phases
+ (delete 'configure)
+ (replace 'build
+ (lambda _
+ (with-directory-excursion "src"
+ (invoke #$(file-append python "/bin/python3") "miracode.py"))))
+ (replace 'install
+ (lambda _
+ (install-file (string-append "dist/Miracode.ttf")
+ (string-append #$output
"/share/fonts/truetype")))))))
+ (home-page "https://github.com/IdreesInc/Monocraft")
+ (synopsis "Sharp, readable, vector-y version of Monocraft")
+ (description
+ "Miracode is a readable monospaced font inspired by Monocraft, designed
for
+clarity in coding. It features over 1500 glyphs, enhanced with tasteful tails
+and serifs for thin characters. Each character has a unique angular design,
+and it includes programming ligatures for improved visual clarity, such as
+arrows and custom ligatures for @code{TODO:} and @code{NOTE:}.")
+ (license (list license:gpl3+ ;Code
+ license:silofl1.1)))) ;Font
+
(define-public font-monaspace
(package
(name "font-monaspace")