diff options
author | ROCKTAKEY <rocktakey@gmail.com> | 2025-01-10 00:46:25 +0900 |
---|---|---|
committer | 宋文武 <iyzsong@member.fsf.org> | 2025-01-13 08:11:15 +0800 |
commit | c81113bfa03fa2627d86e8277f2ed1985f0d0c7f (patch) | |
tree | db21d6f558d1cd61303bcd30a8fef858300fa600 /gnu | |
parent | 96db64f996865c37525e70b1a7fd5084b14209dd (diff) |
gnu: Add font-cica.
* gnu/packages/fonts.scm (font-cica): New variable.
Change-Id: I8bfd7f7050d8e6870aeb3e5f65f8b420078170ef
Signed-off-by: 宋文武 <iyzsong@member.fsf.org>
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/fonts.scm | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/gnu/packages/fonts.scm b/gnu/packages/fonts.scm index 593240bcdd..4dbbca69dc 100644 --- a/gnu/packages/fonts.scm +++ b/gnu/packages/fonts.scm @@ -3896,3 +3896,24 @@ written with the Devanagari script.") It is relatively compact to allow a lot of code on screen, while (hopefully) clear enough to remain readable even at high resolutions.") (license license:expat))) + +(define-public font-cica + (package + (name "font-cica") + (version "5.0.3") + (source + (origin + (method url-fetch) + (uri (string-append "https://github.com/miiton/Cica/releases/download/" + "v" version "/Cica_v" version ".zip")) + (sha256 + (base32 "0vshn2cd70mnbavsw9cbagcasa95wiv9qdj4wkzxn7gxygqvrlfb")))) + (build-system font-build-system) + (home-page "https://github.com/miiton/Cica") + (synopsis "Japanese monospaced font for programming") + (description + "Cica is a Japanese monospaced font for programming. +Hack + DejaVu Sans Mono is used for ASCII, and Rounded Mgen+ for the other. +In addition, Nerd Fonts, Noto Emoji, Icons for Devs, and some adjustment forked +from the Ricty generator are converted and adjusted.") + (license license:silofl1.1))) |