diff options
author | Kurome <hunt31999@gmail.com> | 2025-04-15 12:04:18 +0900 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2025-04-24 11:02:52 +0200 |
commit | e0f324cabea4e0610c56e7a2868fc4743c2dca8e (patch) | |
tree | 4580dcd34909c41fe2ba802e90e4b5b6260ba13d | |
parent | f41e74e2a05a0fdc517f79f7a1d4baace6a3f563 (diff) | |
download | guix-e0f324cabea4e0610c56e7a2868fc4743c2dca8e.tar.gz guix-e0f324cabea4e0610c56e7a2868fc4743c2dca8e.zip |
gnu: Add font-koruri.
* gnu/packages/fonts.scm (font-koruri): New variable.
Change-Id: I6a2db34eb140b8d4cf5bf4341a33b43f96d85b81
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
-rw-r--r-- | gnu/packages/fonts.scm | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/gnu/packages/fonts.scm b/gnu/packages/fonts.scm index 5a8bf8fb45..1477c7527a 100644 --- a/gnu/packages/fonts.scm +++ b/gnu/packages/fonts.scm @@ -3578,6 +3578,30 @@ operating systems and embedded software where timely updates and quality assurance are essential.") (license license:ipa))) +(define-public font-koruri + ;; Source: https://github.com/Koruri/Scripts + (package + (name "font-koruri") + (version "20210720") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/Koruri/Koruri") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0yadd6rcyf940c441zr1m90srhz9xjsak281bvn6p6br7nsm9gyc")))) + (build-system font-build-system) + (home-page "https://koruri.github.io/") + (synopsis "Japanese TrueType font obtained by mixing M+ FONTS and Open Sans") + (description + "This package provides the Koruri font, a Japanese TrueType font composed +of Open Sans and OSDN’s M+ 1p. It is designed with an emphasis on readability +in texts containing mixed alphanumeric characters and in user interfaces of +computer software.") + (license license:asl2.0))) + (define-public font-catamaran (let ((commit "7559b4906f9c9148fb22c6f89508c3053a78a296") (revision "1")) |