diff options
author | Josep Bigorra <[email protected]> | 2024-12-20 16:25:57 +0100 |
---|---|---|
committer | 宋文武 <[email protected]> | 2025-02-21 11:53:51 +0800 |
commit | 9372f6af20ac453a77aae76ee8f07bde5135de22 (patch) | |
tree | 3181f3988c7a8a2189bf2bc8ffce07c4f2ff1a5e /gnu/packages/fonts.scm | |
parent | ef8d2d1ea979da05f48cb7b23f22df1a84324469 (diff) |
gnu: Add font-monaspace.
* gnu/packages/fonts.scm (font-monaspace): New variable.
Change-Id: I25559696f792a8dbf4961dfba2be906fb6d5f0c0
Signed-off-by: 宋文武 <[email protected]>
Diffstat (limited to 'gnu/packages/fonts.scm')
-rw-r--r-- | gnu/packages/fonts.scm | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/gnu/packages/fonts.scm b/gnu/packages/fonts.scm index 7830aae14a..5e0dca63c1 100644 --- a/gnu/packages/fonts.scm +++ b/gnu/packages/fonts.scm @@ -62,6 +62,7 @@ ;;; Copyright © 2024 Christina O'Donnell <[email protected]> ;;; Copyright © 2025 Ashvith Shetty <[email protected]> ;;; Copyright © 2025 Ashish SHUKLA <[email protected]> +;;; Copyright © 2024 Josep Bigorra <[email protected]> ;;; ;;; This file is part of GNU Guix. ;;; @@ -2521,6 +2522,32 @@ files (TTF).") (home-page "https://software.sil.org/charis/") (license license:silofl1.1))) +(define-public font-monaspace + (package + (name "font-monaspace") + (version "1.101") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/githubnext/monaspace") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "00bpzzpwz5m20ap0c1gy0rf99pc76g8lk6jr0wh7xs8fjazq7lf1")))) + (build-system font-build-system) + (outputs '("out" "ttf" "woff")) + (home-page "https://monaspace.githubnext.com") + (synopsis "Innovative superfamily of fonts for code") + (description + "The Monaspace type system is a monospaced type superfamily with some +modern tricks up its sleeve. It consists of five variable axis typefaces. +Each one has a distinct voice, but they are all metrics-compatible with one +another, allowing you to mix and match them for a more expressive +typographical palette.") + (license license:silofl1.1))) + (define-public font-mononoki (package (name "font-mononoki") |