diff options
author | Alex Vong <alexvong1995@gmail.com> | 2019-08-08 14:37:41 +0800 |
---|---|---|
committer | Alex Vong <alexvong1995@gmail.com> | 2019-09-17 13:31:00 +0800 |
commit | 7c25904c98f5460c447c787440d5378cef52fc6a (patch) | |
tree | 8c87f219d5a2096c8ee41ae35c2e3741142336c0 /gnu | |
parent | ee3dc52b3ff999772d3f45765ee5ad64f5d57427 (diff) | |
download | guix-7c25904c98f5460c447c787440d5378cef52fc6a.tar.gz guix-7c25904c98f5460c447c787440d5378cef52fc6a.zip |
gnu: Add tegaki-wagomu-japanese-joyo.
* gnu/packages/language.scm (tegaki-wagomu-japanese-joyo): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/language.scm | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/gnu/packages/language.scm b/gnu/packages/language.scm index ab94f6cba2..8877dbd817 100644 --- a/gnu/packages/language.scm +++ b/gnu/packages/language.scm @@ -830,3 +830,19 @@ suitable for both the desktop and mobile devices.") (modules remove-pre-compiled-files-modules) (snippet (remove-pre-compiled-files "model")))) (license lgpl2.1))) ; all files + +(define-public tegaki-wagomu-japanese-joyo + (package + (inherit tegaki-zinnia-japanese) + (name "tegaki-wagomu-japanese-joyo") + (version "0.3") + (source + (origin + (method url-fetch) + (uri (tegaki-release-uri name version "zip")) + (sha256 + (base32 + "0wk8shpr963zp328g991qs6abpnacq4242003m687z2d6yp7nph2")) + (modules remove-pre-compiled-files-modules) + (snippet (remove-pre-compiled-files "model")))) + (license lgpl2.1))) ; all files |