From d932c84ae7160ba544962d53bc6845ff92bfa72c Mon Sep 17 00:00:00 2001 From: ng0 Date: Sat, 9 Sep 2017 19:54:49 +0000 Subject: [PATCH 35/86] gnu: Add font-google-noto-sans-gothic. * gnu/packages/fonts.scm (font-google-noto-sans-gothic): New variable. --- gnu/packages/fonts.scm | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/gnu/packages/fonts.scm b/gnu/packages/fonts.scm index 095d608b0..3d284bda7 100644 --- a/gnu/packages/fonts.scm +++ b/gnu/packages/fonts.scm @@ -1350,6 +1350,27 @@ all languages with a consistent look and aesthetic. Its goal is to properly display all Unicode symbols.") (license license:silofl1.1))) +(define-public font-google-noto-sans-gothic + (package + (name "font-google-noto-sans-gothic") + (version "20170403") + (source + (origin + (method url-fetch/zipbomb) + (uri (string-append "https://noto-website.storage.googleapis.com/pkgs/" + "NotoSansGothic-unhinted.zip")) + (file-name (string-append name "-" version ".zip")) + (sha256 + (base32 + "1nzganb9jvrhiigk91yx145wyqh3wzdm4bh90nzjjss7j492a93h")))) + (build-system font-build-system) + (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 +all languages with a consistent look and aesthetic. Its goal is to properly +display all Unicode symbols.") + (license license:silofl1.1))) + (define-public font-google-roboto (package (name "font-google-roboto") -- 2.14.1