mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 05:48:07 -05:00
gnu: font-google-noto-sans-cjk: Switch to variable fonts.
* gnu/packages/fonts.scm (font-google-noto-sans-cjk) [source]: Switch to variable fonts. [arguments]<#:phases>: Keep only TTCs in "out". Install OTFs into "otf" output. [outputs]: Add "otf". Change-Id: I996d75b7892333bc69d21af53a5243a442e3a6b3
This commit is contained in:
parent
91f4193e74
commit
f287fa3e01
1 changed files with 14 additions and 2 deletions
|
@ -1187,11 +1187,23 @@ (define-public font-google-noto-sans-cjk
|
|||
(method url-fetch)
|
||||
(uri (string-append
|
||||
"https://github.com/googlefonts/noto-cjk/releases/download/Sans"
|
||||
version "/03_NotoSansCJK-OTC.zip"))
|
||||
version "/01_NotoSansCJK-OTF-VF.zip"))
|
||||
(file-name (string-append name "-" version ".zip"))
|
||||
(sha256
|
||||
(base32 "1v9yda7r98g4a3pk0y3cjbgc1i2lv4ax0f0v6aqasfzz4ldlx3sj"))))
|
||||
(base32 "1ka37kqyd0sfqwk485nv6ihrdjl5xycr38m4jq40r2lzmpmkmqym"))))
|
||||
(build-system font-build-system)
|
||||
(arguments
|
||||
(list #:phases
|
||||
#~(modify-phases %standard-phases
|
||||
(replace 'install
|
||||
(lambda _
|
||||
(chdir "..") ;For license.
|
||||
(let ((install (assoc-ref %standard-phases 'install)))
|
||||
(with-directory-excursion "Variable/OTC"
|
||||
(install #:outputs `(("out" . ,#$output))))
|
||||
(with-directory-excursion "Variable/OTF"
|
||||
(install #:outputs `(("out" . ,#$output:otf))))))))))
|
||||
(outputs '("out" "otf"))
|
||||
(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
|
||||
|
|
Loading…
Reference in a new issue