diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2022-10-07 19:48:24 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2022-10-08 01:22:28 +0200 |
commit | 91334d36a45f80b4d7773498b8f23ba137404f36 (patch) | |
tree | a698293d75a17b33dc9aa5aa21b0c447ecb06142 | |
parent | 39311c9a8bf9d4e5db3a74d73c48fc4efe247622 (diff) | |
download | guix-91334d36a45f80b4d7773498b8f23ba137404f36.tar.gz |
gnu: Add font-google-noto-sans-cjk.
* gnu/packages/fonts.scm (font-google-noto-sans-cjk): New variable.
-rw-r--r-- | gnu/packages/fonts.scm | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/gnu/packages/fonts.scm b/gnu/packages/fonts.scm index 8e829c6c17..43e23094ad 100644 --- a/gnu/packages/fonts.scm +++ b/gnu/packages/fonts.scm @@ -918,6 +918,28 @@ all languages with a consistent look and aesthetic. Its goal is to properly display all Unicode symbols.") (license license:silofl1.1))) +(define-public font-google-noto-sans-cjk + (package + (name "font-google-noto-sans-cjk") + (version "2.004") + (source + (origin + (method url-fetch) + (uri (string-append + "https://github.com/googlefonts/noto-cjk/releases/download/Sans" + version "/03_NotoSansCJK-OTC.zip")) + (file-name (string-append name "-" version ".zip")) + (sha256 + (base32 "1v9yda7r98g4a3pk0y3cjbgc1i2lv4ax0f0v6aqasfzz4ldlx3sj")))) + (build-system font-build-system) + (home-page "https://www.google.com/get/noto/") + (synopsis "Fonts to cover all languages") + (description "Google Noto Fonts is a family of fonts designed to support +all languages with a consistent look and aesthetic. Its goal is to properly +display all Unicode symbols. This package provides the Sans Serif variant of +CJK fonts.") + (license license:silofl1.1))) + (define-public font-google-roboto (package (name "font-google-roboto") |