diff options
author | Kurome <hunt31999@gmail.com> | 2025-04-15 12:04:21 +0900 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2025-04-24 11:03:45 +0200 |
commit | 9f4bdb270e178eac636df3f4bbffbe4aa3b90a67 (patch) | |
tree | 1043b9bb038fed142250c6d4a92dfc6abb278956 | |
parent | 2e4cee51734620f9f798ebde4cf4b1615e39d83f (diff) | |
download | guix-9f4bdb270e178eac636df3f4bbffbe4aa3b90a67.tar.gz guix-9f4bdb270e178eac636df3f4bbffbe4aa3b90a67.zip |
gnu: Add font-kochi-substitute.
* gnu/packages/fonts.scm (font-kochi-substitute): New variable.
Change-Id: I5b8476c7432fb0036782f5ed7c775d000ecd9485
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
-rw-r--r-- | gnu/packages/fonts.scm | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/gnu/packages/fonts.scm b/gnu/packages/fonts.scm index cebc94921a..24a748aa70 100644 --- a/gnu/packages/fonts.scm +++ b/gnu/packages/fonts.scm @@ -3666,6 +3666,32 @@ combining a font automatically generated by CLWFK, a derivative of the Wada Laboratory Font Kit, with an existing free bitmap font.") (license (license:non-copyleft "file://README")))) +(define-public font-kochi-substitute + (package + (name "font-kochi-substitute") + (version "20030809") + (source + (origin + (method url-fetch) + (uri (string-append + "https://web.archive.org/web/20050329001754/" + "http://osdn.dl.sourceforge.jp/efont/5411/kochi-substitute-" + version + ".tar.bz2")) + (sha256 + (base32 "130l4g6nhg6bjdcjmk56c04l9wdk2cby1rad5izbycw8acj9pmpl")))) + (build-system font-build-system) + (home-page (string-append + "https://web.archive.org/web/20150421193819/" + "http://en.sourceforge.jp/projects/efont/")) + (synopsis "Japanese font, free replacement for MS Gothic and MS Mincho") + (description + "This package provides the Kochi Gothic and Kochi Mincho fonts, developed +by Yasuyuki Furukawa as free alternatives to proprietary fonts such as MS Gothic +and MS Mincho.") + (license (license:non-copyleft + "https://fedoraproject.org/wiki/Licensing:Wadalab")))) + (define-public font-catamaran (let ((commit "7559b4906f9c9148fb22c6f89508c3053a78a296") (revision "1")) |