From 28e4f70a19b238d3c3d5707a80ce5c004db2b3e0 Mon Sep 17 00:00:00 2001 From: ng0 Date: Tue, 8 Aug 2017 11:51:23 +0000 Subject: [PATCH 03/86] gnu: Add font-google-noto-mono. * gnu/packages/fonts.scm (font-google-noto-mono): 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 c76640652..5f9dc78e9 100644 --- a/gnu/packages/fonts.scm +++ b/gnu/packages/fonts.scm @@ -678,6 +678,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-mono + (package + (name "font-google-noto-mono") + (version "20170403") + (source + (origin + (method url-fetch/zipbomb) + (uri (string-append "https://noto-website.storage.googleapis.com/pkgs/" + "NotoMono-hinted.zip")) + (file-name (string-append name "-" version ".zip")) + (sha256 + (base32 + "19dlygl0mbvvgd3c5ybhx075i9rymwnhgg3j4axgk71sc943yyls")))) + (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