diff options
author | Kurome <hunt31999@gmail.com> | 2025-04-15 12:04:19 +0900 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2025-04-24 11:03:42 +0200 |
commit | b1a0d56612bf6477d422fdd891a4a613ee34133c (patch) | |
tree | 7b97ef2bc7052cd708c3078e1135b328d1d94abc | |
parent | e0f324cabea4e0610c56e7a2868fc4743c2dca8e (diff) | |
download | guix-b1a0d56612bf6477d422fdd891a4a613ee34133c.tar.gz guix-b1a0d56612bf6477d422fdd891a4a613ee34133c.zip |
gnu: Add font-hachimarupop.
* gnu/packages/fonts.scm (font-hachimarupop): New variable.
Change-Id: Ic023422285c2d91e147ebe8589a6e72fdae3bcad
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Modified-by: Ludovic Courtès <ludo@gnu.org>
-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 1477c7527a..9ae6c12a9b 100644 --- a/gnu/packages/fonts.scm +++ b/gnu/packages/fonts.scm @@ -3602,6 +3602,33 @@ in texts containing mixed alphanumeric characters and in user interfaces of computer software.") (license license:asl2.0))) +(define-public font-hachimarupop + (let ((commit "67d96c274032f5a2e1d33c1ec53498fde9110079") + (revision "0")) + (package + (name "font-hachimarupop") + (version (git-version "0" revision commit)) + (source + (origin + (method git-fetch) + (uri (git-reference + (commit commit) + (url "https://github.com/noriokanisawa/HachiMaruPop"))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0xkd2nvcxh9xmfp1hjqknvy1v2z8ch7svjyzpg313lkj6p4shnbg")))) + (build-system font-build-system) + (home-page "https://github.com/noriokanisawa/HachiMaruPop") + (synopsis "Cute Japanese font") + (description + "This package provides a charming Japanese font that combines the +circular letter style popular among young Japanese girls in the 1970s and 1980s +with contemporary round-character aesthetics. The font reflects the energetic +trend of the era, when the circular script was so widespread that some schools +banned its use. This font pushes the roundness to its limit while capturing the +spirit of both past and present styles.") + (license license:silofl1.1)))) + (define-public font-catamaran (let ((commit "7559b4906f9c9148fb22c6f89508c3053a78a296") (revision "1")) |