guix_mirror_bot pushed a commit to branch master
in repository guix.

commit 207829f9f1ea8bab246ec23c8c4368805304c240
Author: Evgeny Pisemsky <[email protected]>
AuthorDate: Sun Jul 27 19:05:25 2025 +0300

    gnu: Add font-tiktok-sans.
    
    * gnu/packages/fonts.scm (font-tiktok-sans): New variable.
    
    Change-Id: Iaf132f2fd8d5c7ecd6987dbaa7caedf8fa288930
    Signed-off-by: Steve George <[email protected]>
---
 gnu/packages/fonts.scm | 24 ++++++++++++++++++++++++
 1 file changed, 24 insertions(+)

diff --git a/gnu/packages/fonts.scm b/gnu/packages/fonts.scm
index aad3a0e04f..1ba2a8c9b5 100644
--- a/gnu/packages/fonts.scm
+++ b/gnu/packages/fonts.scm
@@ -67,6 +67,7 @@
 ;;; Copyright © 2025 Kurome <[email protected]>
 ;;; Copyright © 2025 Gabriel Santos <[email protected]>
 ;;; Copyright © 2025 Liam Hupfer <[email protected]>
+;;; Copyright © 2025 Evgeny Pisemsky <[email protected]>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -883,6 +884,29 @@ expansion of Franklin Gothic, a classic font.  It covers 
105 Latin Languages.")
 for long periods of working with computers (8 or more hours per day).")
     (license license:silofl1.1)))
 
+(define-public font-tiktok-sans
+  (package
+    (name "font-tiktok-sans")
+    (version "4.000")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+              (url "https://github.com/tiktok/TikTokSans";)
+              (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32
+          "0mq3dfx8b79w4bdglzjsdrisgrn2kjcbx38p262sxj5nq4iplgjd"))))
+    (build-system font-build-system)
+    (home-page "https://www.tiktok.com/font";)
+    (synopsis "TikTok Sans is the default font for TikTok videos")
+    (description
+     "TikTok Sans is the default font used in millions of TikTok videos.
+It supports over 460 languages, and is optimised for high-DPI mobile UI
+typesetting.")
+    (license license:silofl1.1)))
+
 (define-public font-adobe-source-han-serif
   (package
     (name "font-adobe-source-han-serif")

Reply via email to