guix-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[PATCH 1/2] fonts: Add Google Noto font.


From: Jookia
Subject: [PATCH 1/2] fonts: Add Google Noto font.
Date: Sat, 12 Mar 2016 10:29:15 +1100

* gnu/packages/fonts.scm (font-noto): Add new font.
---
 gnu/packages/fonts.scm | 46 ++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 46 insertions(+)

diff --git a/gnu/packages/fonts.scm b/gnu/packages/fonts.scm
index b9cebdc..091167a 100644
--- a/gnu/packages/fonts.scm
+++ b/gnu/packages/fonts.scm
@@ -7,6 +7,7 @@
 ;;; Copyright © 2015 Eric Dvorsak <address@hidden>
 ;;; Copyright © 2015 Ricardo Wurmus <address@hidden>
 ;;; Copyright © 2016 Nils Gillmann <address@hidden>
+;;; Copyright © 2016 Jookia <address@hidden>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -628,3 +629,48 @@ Unicode's Basic Multilingual Plane.  The package also 
includes
 utilities to ease adding new glyphs to the font.")
     (home-page "http://unifoundry.com/unifont.html";)
     (license license:gpl2+)))
+
+(define-public font-noto
+  (package
+    (name "font-noto")
+    (version "20150929")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append 
"https://noto-website-2.storage.googleapis.com/";
+                                  "pkgs/Noto-hinted.zip"))
+              (sha256
+               (base32
+                "13jhpqzhsqhyby8n0ksqg155a3jyaif3nzj9anzbq8s2gn1xjyd9"))))
+    (build-system trivial-build-system)
+    (arguments
+     `(#:modules ((guix build utils))
+       #:builder (begin
+                   (use-modules (guix build utils)
+                                (srfi srfi-26))
+
+                   (let ((PATH     (string-append (assoc-ref %build-inputs
+                                                             "unzip")
+                                                  "/bin"))
+                         (font-dir (string-append %output
+                                                  "/share/fonts/truetype")))
+                     (setenv "PATH" PATH)
+                     (system* "unzip" (assoc-ref %build-inputs "source"))
+
+                     (mkdir-p font-dir)
+                     ;(chdir (string-append "noto-" ,version))
+                     (for-each (lambda (ttf)
+                                 (copy-file ttf
+                                            (string-append font-dir "/" ttf)))
+                               (find-files "." "\\.ttf$"))
+                     (for-each (lambda (otf)
+                                 (copy-file otf
+                                            (string-append font-dir "/" otf)))
+                               (find-files "." "\\.otf$"))))))
+    (native-inputs `(("source" ,source)
+                     ("unzip" ,unzip)))
+    (home-page "https://www.google.com/get/noto/";)
+    (synopsis "Fonts aimed to cover all languages")
+    (description "Googe Noto Fonts is a family of fonts aimed to support all
+languages with a consistent look and aesthetic.  It's goal is to have no 
Unicode
+symbols unable to be displayed properly.")
+    (license license:silofl1.1)))
-- 
2.6.3




reply via email to

[Prev in Thread] Current Thread [Next in Thread]