From 3962b739bf34a6a075ebdf2e4f5c702f19373835 Mon Sep 17 00:00:00 2001 From: Gabriel Santos Date: Wed, 4 Mar 2026 20:14:37 -0300 Subject: [PATCH] gnu: Add font-google-noto-serif-hebrew. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * gnu/packages/fonts.scm (font-google-noto-serif-hebrew): New variable. Closes: guix/guix#6895 Change-Id: I00474e6ba1fefdfc44fdf7f0d0d1435f705529db Signed-off-by: 宋文武 --- gnu/packages/fonts.scm | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/gnu/packages/fonts.scm b/gnu/packages/fonts.scm index ac7f6c26fc..7408185a8e 100644 --- a/gnu/packages/fonts.scm +++ b/gnu/packages/fonts.scm @@ -2052,6 +2052,33 @@ display all Unicode symbols. This package provides the Serif variant of Hebrew fonts.") (license license:silofl1.1))) +(define-public font-google-noto-serif-hebrew + (package + (name "font-google-noto-serif-hebrew") + (version "2.004") + (source + (origin + (method url-fetch) + (uri (string-append + "https://github.com/notofonts/hebrew/releases/download" + "/NotoSerifHebrew-v" + version + "/NotoSerifHebrew-v" + version + ".zip")) + (file-name (string-append name "-" version ".zip")) + (sha256 + (base32 "1nj61jhag924337gww77xxg3k6qy1pnnjldxikqra505457kyllr")))) + (build-system font-build-system) + (home-page "https://fonts.google.com/noto/specimen/Noto+Serif+Hebrew") + (synopsis "Hebrew serif font") + (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 Serif variant of +Hebrew fonts.") + (license license:silofl1.1))) + (define-public font-google-roboto (package (name "font-google-roboto")