mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-25 20:19:18 -05:00
gnu: Add font-google-noto-emoji.
* gnu/packages/fonts.scm (font-google-noto-emoji): New variable. Signed-off-by: 宋文武 <iyzsong@member.fsf.org>
This commit is contained in:
parent
3c075ffd82
commit
f26c474dec
1 changed files with 31 additions and 0 deletions
|
@ -939,6 +939,37 @@ (define-public font-google-noto
|
||||||
display all Unicode symbols.")
|
display all Unicode symbols.")
|
||||||
(license license:silofl1.1)))
|
(license license:silofl1.1)))
|
||||||
|
|
||||||
|
(define-public font-google-noto-emoji
|
||||||
|
(package
|
||||||
|
(name "font-google-noto-emoji")
|
||||||
|
(version "2.038")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/googlefonts/noto-emoji")
|
||||||
|
(commit (string-append "v" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"1rgmcc6nqq805iqr8kvxxlk5cf50q714xaxk3ld6rjrd69kb8ix9"))))
|
||||||
|
(build-system font-build-system)
|
||||||
|
(arguments
|
||||||
|
(list
|
||||||
|
#:phases
|
||||||
|
#~(modify-phases %standard-phases
|
||||||
|
(add-after 'unpack 'remove-unsupported
|
||||||
|
(lambda* _
|
||||||
|
(delete-file "fonts/NotoColorEmoji_WindowsCompatible.ttf")
|
||||||
|
(delete-file "fonts/Noto-COLRv1-noflags.ttf")
|
||||||
|
(delete-file "fonts/Noto-COLRv1.ttf"))))))
|
||||||
|
(home-page "https://fonts.google.com/noto/specimen/Noto+Color+Emoji")
|
||||||
|
(synopsis "Font for rendering color emoji characters")
|
||||||
|
(description
|
||||||
|
"This package provides the color emoji font from the Google Noto font
|
||||||
|
family.")
|
||||||
|
(license license:silofl1.1)))
|
||||||
|
|
||||||
(define-public font-google-noto-sans-cjk
|
(define-public font-google-noto-sans-cjk
|
||||||
(package
|
(package
|
||||||
(name "font-google-noto-sans-cjk")
|
(name "font-google-noto-sans-cjk")
|
||||||
|
|
Loading…
Reference in a new issue