[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
09/11: gnu: font-google-noto-emoji: Install correct license file.
From: |
guix-commits |
Subject: |
09/11: gnu: font-google-noto-emoji: Install correct license file. |
Date: |
Wed, 1 Mar 2023 10:17:03 -0500 (EST) |
cbaines pushed a commit to branch master
in repository guix.
commit 9a4dd01f1da2681fef8f89d43a43efa4ccbb5a16
Author: Simon South <simon@simonsouth.net>
AuthorDate: Thu Feb 2 15:25:00 2023 -0500
gnu: font-google-noto-emoji: Install correct license file.
* gnu/packages/fonts.scm (font-google-noto-emoji)[arguments]<#:phases>: Add
"enter-font-directory" phase; remove now-superfluous prefix from paths in
"remove-unsupported" phase.
Signed-off-by: Christopher Baines <mail@cbaines.net>
---
gnu/packages/fonts.scm | 12 ++++++++----
1 file changed, 8 insertions(+), 4 deletions(-)
diff --git a/gnu/packages/fonts.scm b/gnu/packages/fonts.scm
index 13699cdfce..33935c5699 100644
--- a/gnu/packages/fonts.scm
+++ b/gnu/packages/fonts.scm
@@ -982,11 +982,15 @@ display all Unicode symbols.")
(list
#:phases
#~(modify-phases %standard-phases
- (add-after 'unpack 'remove-unsupported
+ (add-after 'unpack 'enter-font-directory
+ (lambda _
+ ;; Note this ensures the correct license file is installed.
+ (chdir "fonts")))
+ (add-after 'enter-font-directory 'remove-unsupported
(lambda* _
- (delete-file "fonts/NotoColorEmoji_WindowsCompatible.ttf")
- (delete-file "fonts/Noto-COLRv1-noflags.ttf")
- (delete-file "fonts/Noto-COLRv1.ttf"))))))
+ (delete-file "NotoColorEmoji_WindowsCompatible.ttf")
+ (delete-file "Noto-COLRv1-noflags.ttf")
+ (delete-file "Noto-COLRv1.ttf"))))))
(home-page "https://fonts.google.com/noto/specimen/Noto+Color+Emoji")
(synopsis "Font for rendering color emoji characters")
(description
- branch master updated (f01b5299db -> c05adaddb1), guix-commits, 2023/03/01
- 04/11: gnu: Add flat-remix-gtk-theme., guix-commits, 2023/03/01
- 03/11: gnu: Add flat-remix-icon-theme., guix-commits, 2023/03/01
- 05/11: gnu: Add flat-remix-gnome-theme., guix-commits, 2023/03/01
- 07/11: gnu: icecat: Remove unsupported --disable-eme option on aarch64., guix-commits, 2023/03/01
- 01/11: gnu: Add python-pyee., guix-commits, 2023/03/01
- 02/11: gnu: Add python-pixelmatch., guix-commits, 2023/03/01
- 06/11: gnu: Add python-pypresence., guix-commits, 2023/03/01
- 09/11: gnu: font-google-noto-emoji: Install correct license file.,
guix-commits <=
- 11/11: gnu: Add emacs-motif., guix-commits, 2023/03/01
- 08/11: gnu: Add font-apl2741-unicode., guix-commits, 2023/03/01
- 10/11: gnu: Add ghc-hs-conllu., guix-commits, 2023/03/01