all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#28404] The complete Google Noto Fonts
@ 2017-09-10  9:06 ng0
  2017-09-11  8:27 ` Ludovic Courtès
  0 siblings, 1 reply; 13+ messages in thread
From: ng0 @ 2017-09-10  9:06 UTC (permalink / raw)
  To: 28404


[-- Attachment #1.1: Type: text/plain, Size: 804 bytes --]

These patches add all of Google Noto font.

Be aware that you will need at least 600 MB for the source tarballs.
There are only 5 real big tarballs, the rest is small.

You will have 86 or 87 patches, so if you want to test it in another
way try adding my guix developer repository at
https://gitweb.krosos.org/ng0_guix/guix if I fixed it
(otherwise git://git.krosos.org/srv/git/ng0/ng0_guix/guix works).

The only things which really are unique are:
filenames + name + variable name + hash

As Google (and 99% of all fonts out there) update in place,
I have a versioned inofficial mirror directory in case we
should ever want to use it.
-- 
ng0
GnuPG: A88C8ADD129828D7EAC02E52E22F9BBFEE348588
GnuPG: https://krosos.org/dist/keys/
https://www.infotropique.org https://www.krosos.org

[-- Attachment #1.2: 0001-gnu-Add-font-google-noto-sans.patch --]
[-- Type: text/plain, Size: 1638 bytes --]

From 0c3e8a2dd3cf44a83215440dc5457f507b67bd66 Mon Sep 17 00:00:00 2001
From: ng0 <ng0@infotropique.org>
Date: Tue, 8 Aug 2017 11:38:25 +0000
Subject: [PATCH 01/86] gnu: Add font-google-noto-sans.

* gnu/packages/fonts.scm (font-google-noto-sans): 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 97d399a4c..12a50f3a2 100644
--- a/gnu/packages/fonts.scm
+++ b/gnu/packages/fonts.scm
@@ -636,6 +636,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
+  (package
+    (name "font-google-noto-sans")
+    (version "20170403")
+    (source
+     (origin
+       (method url-fetch/zipbomb)
+       (uri (string-append "https://noto-website.storage.googleapis.com/pkgs/"
+                           "NotoSans-hinted.zip"))
+       (file-name (string-append name "-" version ".zip"))
+       (sha256
+        (base32
+         "0z010hgjhr0mvalz6xchb2h1xa9f1pvcvrb31bdgk9pa3zg9mcs3"))))
+    (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


[-- Attachment #1.3: 0002-gnu-Add-font-google-noto-serif.patch --]
[-- Type: text/plain, Size: 1643 bytes --]

From 821d73673b2630b23f038a98d11ee2b5cc6064ea Mon Sep 17 00:00:00 2001
From: ng0 <ng0@infotropique.org>
Date: Tue, 8 Aug 2017 11:47:37 +0000
Subject: [PATCH 02/86] gnu: Add font-google-noto-serif.

* gnu/packages/fonts.scm (font-google-noto-serif): 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 12a50f3a2..c76640652 100644
--- a/gnu/packages/fonts.scm
+++ b/gnu/packages/fonts.scm
@@ -657,6 +657,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-serif
+  (package
+    (name "font-google-noto-serif")
+    (version "20170403")
+    (source
+     (origin
+       (method url-fetch/zipbomb)
+       (uri (string-append "https://noto-website.storage.googleapis.com/pkgs/"
+                           "NotoSerif-hinted.zip"))
+       (file-name (string-append name "-" version ".zip"))
+       (sha256
+        (base32
+         "0qbx4gqs9rlyb2g5rpqrlindkalyf10z2q4vm4qnn74lmm1iiivy"))))
+    (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


[-- Attachment #1.4: 0003-gnu-Add-font-google-noto-mono.patch --]
[-- Type: text/plain, Size: 1638 bytes --]

From 28e4f70a19b238d3c3d5707a80ce5c004db2b3e0 Mon Sep 17 00:00:00 2001
From: ng0 <ng0@infotropique.org>
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


[-- Attachment #1.5: 0004-gnu-Add-font-google-noto-coloremoji.patch --]
[-- Type: text/plain, Size: 1670 bytes --]

From 1ca36b67ddf611efb2c2c27cc05eab520421a423 Mon Sep 17 00:00:00 2001
From: ng0 <ng0@infotropique.org>
Date: Fri, 8 Sep 2017 11:32:40 +0000
Subject: [PATCH 04/86] gnu: Add font-google-noto-coloremoji.

* gnu/packages/fonts.scm (font-google-noto-coloremoji): 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 5f9dc78e9..9fe7d6c79 100644
--- a/gnu/packages/fonts.scm
+++ b/gnu/packages/fonts.scm
@@ -699,6 +699,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-coloremoji
+  (package
+    (name "font-google-noto-coloremoji")
+    (version "20170403")
+    (source
+     (origin
+       (method url-fetch/zipbomb)
+       (uri (string-append "https://noto-website.storage.googleapis.com/pkgs/"
+                           "NotoColorEmoji-unhinted.zip"))
+       (file-name (string-append name "-" version ".zip"))
+       (sha256
+        (base32
+         "1abmvv56a9px6kq97d3j99wr2sqaz9b40m2mvlnkkz2b7yvwcix9"))))
+    (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


[-- Attachment #1.6: 0005-gnu-Add-font-google-noto-emoji.patch --]
[-- Type: text/plain, Size: 1645 bytes --]

From d185b9d17b66688852fc71f881ce08f2de25f193 Mon Sep 17 00:00:00 2001
From: ng0 <ng0@infotropique.org>
Date: Fri, 8 Sep 2017 11:37:16 +0000
Subject: [PATCH 05/86] gnu: Add font-google-noto-emoji.

* gnu/packages/fonts.scm (font-google-noto-emoji): 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 9fe7d6c79..a9cc60ce7 100644
--- a/gnu/packages/fonts.scm
+++ b/gnu/packages/fonts.scm
@@ -720,6 +720,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-emoji
+  (package
+    (name "font-google-noto-emoji")
+    (version "20170403")
+    (source
+     (origin
+       (method url-fetch/zipbomb)
+       (uri (string-append "https://noto-website.storage.googleapis.com/pkgs/"
+                           "NotoEmoji-unhinted.zip"))
+       (file-name (string-append name "-" version ".zip"))
+       (sha256
+        (base32
+         "0718l0vyiqwapbgg3qk6w10ln2ybimbl9v593p9p56d0ypxiiqhg"))))
+    (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


[-- Attachment #1.7: 0006-gnu-Add-font-google-noto-kufi-arabic.patch --]
[-- Type: text/plain, Size: 1672 bytes --]

From 9ddd5835904b48e112f144cc4b6b6e14282eec02 Mon Sep 17 00:00:00 2001
From: ng0 <ng0@infotropique.org>
Date: Fri, 8 Sep 2017 11:41:44 +0000
Subject: [PATCH 06/86] gnu: Add font-google-noto-kufi-arabic.

* gnu/packages/fonts.scm (font-google-noto-kufi-arabic): 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 a9cc60ce7..b2c504b77 100644
--- a/gnu/packages/fonts.scm
+++ b/gnu/packages/fonts.scm
@@ -741,6 +741,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-kufi-arabic
+  (package
+    (name "font-google-noto-kufi-arabic")
+    (version "20170403")
+    (source
+     (origin
+       (method url-fetch/zipbomb)
+       (uri (string-append "https://noto-website.storage.googleapis.com/pkgs/"
+                           "NotoKufiArabic-hinted.zip"))
+       (file-name (string-append name "-" version ".zip"))
+       (sha256
+        (base32
+         "0prpjm0cbbavy9xj5r04nshyhykm502gwqm7k5vrsvkxbdxj2l07"))))
+    (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


[-- Attachment #1.8: 0007-gnu-Add-font-google-noto-naskh-arabic.patch --]
[-- Type: text/plain, Size: 1677 bytes --]

From 423b404967f299911275c414cdecc274101a9951 Mon Sep 17 00:00:00 2001
From: ng0 <ng0@infotropique.org>
Date: Fri, 8 Sep 2017 11:45:45 +0000
Subject: [PATCH 07/86] gnu: Add font-google-noto-naskh-arabic.

* gnu/packages/fonts.scm (font-google-noto-naskh-arabic): 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 b2c504b77..2f56fb374 100644
--- a/gnu/packages/fonts.scm
+++ b/gnu/packages/fonts.scm
@@ -762,6 +762,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-naskh-arabic
+  (package
+    (name "font-google-noto-naskh-arabic")
+    (version "20170403")
+    (source
+     (origin
+       (method url-fetch/zipbomb)
+       (uri (string-append "https://noto-website.storage.googleapis.com/pkgs/"
+                           "NotoNaskhArabic-hinted.zip"))
+       (file-name (string-append name "-" version ".zip"))
+       (sha256
+        (base32
+         "1iv6bcp1v9yhwmxvbc3f349lv4c93mwvkrmlz1ac9s5x1xig26py"))))
+    (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


[-- Attachment #1.9: 0008-gnu-Add-font-google-noto-nastaliq-urdu.patch --]
[-- Type: text/plain, Size: 1684 bytes --]

From 14cbfaba0dd02ad973c4c923fba5e08d142525cc Mon Sep 17 00:00:00 2001
From: ng0 <ng0@infotropique.org>
Date: Fri, 8 Sep 2017 11:51:17 +0000
Subject: [PATCH 08/86] gnu: Add font-google-noto-nastaliq-urdu.

* gnu/packages/fonts.scm (font-google-noto-nastaliq-urdu): 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 2f56fb374..733fe6fd5 100644
--- a/gnu/packages/fonts.scm
+++ b/gnu/packages/fonts.scm
@@ -783,6 +783,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-nastaliq-urdu
+  (package
+    (name "font-google-noto-nastaliq-urdu")
+    (version "20170403")
+    (source
+     (origin
+       (method url-fetch/zipbomb)
+       (uri (string-append "https://noto-website.storage.googleapis.com/pkgs/"
+                           "NotoNastaliqUrdu-unhinted.zip"))
+       (file-name (string-append name "-" version ".zip"))
+       (sha256
+        (base32
+         "1whldcbj3hj2hjcr19s9694gxmqphiwjgkqxic2i9hzrklmah2m9"))))
+    (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


[-- Attachment #1.10: 0009-gnu-Add-font-google-noto-sans-armenian.patch --]
[-- Type: text/plain, Size: 1682 bytes --]

From 7a0f30cb62bfb6d11aa409192cccc56ec2781e96 Mon Sep 17 00:00:00 2001
From: ng0 <ng0@infotropique.org>
Date: Fri, 8 Sep 2017 11:54:31 +0000
Subject: [PATCH 09/86] gnu: Add font-google-noto-sans-armenian.

* gnu/packages/fonts.scm (font-google-noto-sans-armenian): 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 733fe6fd5..cfa2b7e10 100644
--- a/gnu/packages/fonts.scm
+++ b/gnu/packages/fonts.scm
@@ -804,6 +804,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-armenian
+  (package
+    (name "font-google-noto-sans-armenian")
+    (version "20170403")
+    (source
+     (origin
+       (method url-fetch/zipbomb)
+       (uri (string-append "https://noto-website.storage.googleapis.com/pkgs/"
+                           "NotoSansArmenian-hinted.zip"))
+       (file-name (string-append name "-" version ".zip"))
+       (sha256
+        (base32
+         "0jsbjgy2g025j5srjc6wq8n0a56p5p87la7lpqxbnis9lwslbfrv"))))
+    (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


[-- Attachment #1.11: 0010-gnu-Add-font-google-noto-sans-avestan.patch --]
[-- Type: text/plain, Size: 1679 bytes --]

From 638236e80373a546c52e8555d6108a015c0d85cb Mon Sep 17 00:00:00 2001
From: ng0 <ng0@infotropique.org>
Date: Fri, 8 Sep 2017 11:56:38 +0000
Subject: [PATCH 10/86] gnu: Add font-google-noto-sans-avestan.

* gnu/packages/fonts.scm (font-google-noto-sans-avestan): 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 cfa2b7e10..c2184127b 100644
--- a/gnu/packages/fonts.scm
+++ b/gnu/packages/fonts.scm
@@ -825,6 +825,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-avestan
+  (package
+    (name "font-google-noto-sans-avestan")
+    (version "20170403")
+    (source
+     (origin
+       (method url-fetch/zipbomb)
+       (uri (string-append "https://noto-website.storage.googleapis.com/pkgs/"
+                           "NotoSansAvestan-unhinted.zip"))
+       (file-name (string-append name "-" version ".zip"))
+       (sha256
+        (base32
+         "06xfmlrjzp9h75gsyss0m4y2nh9kk6sn1a3j2d0a406drynji8an"))))
+    (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


[-- Attachment #1.12: 0011-gnu-Add-font-google-noto-sans-balinese.patch --]
[-- Type: text/plain, Size: 1684 bytes --]

From 8c54930a5186acab589fef6862fbd774c45538fa Mon Sep 17 00:00:00 2001
From: ng0 <ng0@infotropique.org>
Date: Sat, 9 Sep 2017 18:55:05 +0000
Subject: [PATCH 11/86] gnu: Add font-google-noto-sans-balinese.

* gnu/packages/fonts.scm (font-google-noto-sans-balinese): 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 c2184127b..1d270667c 100644
--- a/gnu/packages/fonts.scm
+++ b/gnu/packages/fonts.scm
@@ -846,6 +846,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-balinese
+  (package
+    (name "font-google-noto-sans-balinese")
+    (version "20170403")
+    (source
+     (origin
+       (method url-fetch/zipbomb)
+       (uri (string-append "https://noto-website.storage.googleapis.com/pkgs/"
+                           "NotoSansBalinese-unhinted.zip"))
+       (file-name (string-append name "-" version ".zip"))
+       (sha256
+        (base32
+         "0iq2vyr5bbx6d8lcax6i700mpxwbiyllxpp8ivgyzvzmxhcbk42c"))))
+    (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


[-- Attachment #1.13: 0012-gnu-Add-font-google-noto-sans-bamum.patch --]
[-- Type: text/plain, Size: 1669 bytes --]

From f5c2f4a590716d5eef5bd107577ad8069c13ab77 Mon Sep 17 00:00:00 2001
From: ng0 <ng0@infotropique.org>
Date: Sat, 9 Sep 2017 18:59:41 +0000
Subject: [PATCH 12/86] gnu: Add font-google-noto-sans-bamum.

* gnu/packages/fonts.scm (font-google-noto-sans-bamum): 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 1d270667c..5f05f9df3 100644
--- a/gnu/packages/fonts.scm
+++ b/gnu/packages/fonts.scm
@@ -867,6 +867,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-bamum
+  (package
+    (name "font-google-noto-sans-bamum")
+    (version "20170403")
+    (source
+     (origin
+       (method url-fetch/zipbomb)
+       (uri (string-append "https://noto-website.storage.googleapis.com/pkgs/"
+                           "NotoSansBamum-unhinted.zip"))
+       (file-name (string-append name "-" version ".zip"))
+       (sha256
+        (base32
+         "06wqhysyrarc18sjsb3vp8bnkjp6dswv46592ffj23axnllak49i"))))
+    (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


[-- Attachment #1.14: 0013-gnu-Add-font-google-noto-sans-batak.patch --]
[-- Type: text/plain, Size: 1669 bytes --]

From 106957d9b2d213e435271d36265d825ea01157d1 Mon Sep 17 00:00:00 2001
From: ng0 <ng0@infotropique.org>
Date: Sat, 9 Sep 2017 19:03:44 +0000
Subject: [PATCH 13/86] gnu: Add font-google-noto-sans-batak.

* gnu/packages/fonts.scm (font-google-noto-sans-batak): 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 5f05f9df3..0b21c28f0 100644
--- a/gnu/packages/fonts.scm
+++ b/gnu/packages/fonts.scm
@@ -888,6 +888,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-batak
+  (package
+    (name "font-google-noto-sans-batak")
+    (version "20170403")
+    (source
+     (origin
+       (method url-fetch/zipbomb)
+       (uri (string-append "https://noto-website.storage.googleapis.com/pkgs/"
+                           "NotoSansBatak-unhinted.zip"))
+       (file-name (string-append name "-" version ".zip"))
+       (sha256
+        (base32
+         "1jaj60fh7c9qg3d986vv7093dmdcfix14is5jk0k4w5nr27hsw42"))))
+    (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


[-- Attachment #1.15: 0014-gnu-Add-font-google-noto-sans-bengali.patch --]
[-- Type: text/plain, Size: 1677 bytes --]

From 9d6faaeb5ffdcd0786a1140eed03062cbfd6ac47 Mon Sep 17 00:00:00 2001
From: ng0 <ng0@infotropique.org>
Date: Sat, 9 Sep 2017 19:06:15 +0000
Subject: [PATCH 14/86] gnu: Add font-google-noto-sans-bengali.

* gnu/packages/fonts.scm (font-google-noto-sans-bengali): 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 0b21c28f0..23048aec4 100644
--- a/gnu/packages/fonts.scm
+++ b/gnu/packages/fonts.scm
@@ -909,6 +909,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-bengali
+  (package
+    (name "font-google-noto-sans-bengali")
+    (version "20170403")
+    (source
+     (origin
+       (method url-fetch/zipbomb)
+       (uri (string-append "https://noto-website.storage.googleapis.com/pkgs/"
+                           "NotoSansBengali-hinted.zip"))
+       (file-name (string-append name "-" version ".zip"))
+       (sha256
+        (base32
+         "07qf7amsfnpp380bqkgaslppzmbx8mafw72f6zaj904gy18bkb1j"))))
+    (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


[-- Attachment #1.16: 0015-gnu-Add-font-google-noto-sans-brahmi.patch --]
[-- Type: text/plain, Size: 1674 bytes --]

From 2ba098415285f6ae5449cf050e5ab9c4266262d9 Mon Sep 17 00:00:00 2001
From: ng0 <ng0@infotropique.org>
Date: Sat, 9 Sep 2017 19:09:09 +0000
Subject: [PATCH 15/86] gnu: Add font-google-noto-sans-brahmi.

* gnu/packages/fonts.scm (font-google-noto-sans-brahmi): 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 23048aec4..fd23b70f3 100644
--- a/gnu/packages/fonts.scm
+++ b/gnu/packages/fonts.scm
@@ -930,6 +930,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-brahmi
+  (package
+    (name "font-google-noto-sans-brahmi")
+    (version "20170403")
+    (source
+     (origin
+       (method url-fetch/zipbomb)
+       (uri (string-append "https://noto-website.storage.googleapis.com/pkgs/"
+                           "NotoSansBrahmi-unhinted.zip"))
+       (file-name (string-append name "-" version ".zip"))
+       (sha256
+        (base32
+         "0z6lyacqr9a8sv58757pnvn23k14ha2mf3rrsyrj682id0v3mikc"))))
+    (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


[-- Attachment #1.17: 0016-gnu-Add-font-google-noto-sans-buginese.patch --]
[-- Type: text/plain, Size: 1684 bytes --]

From b565f3d2a57888e409ff4c5f901e8929301c4c20 Mon Sep 17 00:00:00 2001
From: ng0 <ng0@infotropique.org>
Date: Sat, 9 Sep 2017 19:11:08 +0000
Subject: [PATCH 16/86] gnu: Add font-google-noto-sans-buginese.

* gnu/packages/fonts.scm (font-google-noto-sans-buginese): 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 fd23b70f3..834000379 100644
--- a/gnu/packages/fonts.scm
+++ b/gnu/packages/fonts.scm
@@ -951,6 +951,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-buginese
+  (package
+    (name "font-google-noto-sans-buginese")
+    (version "20170403")
+    (source
+     (origin
+       (method url-fetch/zipbomb)
+       (uri (string-append "https://noto-website.storage.googleapis.com/pkgs/"
+                           "NotoSansBuginese-unhinted.zip"))
+       (file-name (string-append name "-" version ".zip"))
+       (sha256
+        (base32
+         "1h0v9pqgyjb8idb9ms2wfaclcgcsscbxd0clspxkk00n5bpf4h30"))))
+    (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


[-- Attachment #1.18: 0017-gnu-Add-font-google-noto-sans-buhid.patch --]
[-- Type: text/plain, Size: 1669 bytes --]

From c2b7021d77a779c05359551664a93a9ab176ce08 Mon Sep 17 00:00:00 2001
From: ng0 <ng0@infotropique.org>
Date: Sat, 9 Sep 2017 19:13:03 +0000
Subject: [PATCH 17/86] gnu: Add font-google-noto-sans-buhid.

* gnu/packages/fonts.scm (font-google-noto-sans-buhid): 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 834000379..15b60c1ae 100644
--- a/gnu/packages/fonts.scm
+++ b/gnu/packages/fonts.scm
@@ -972,6 +972,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-buhid
+  (package
+    (name "font-google-noto-sans-buhid")
+    (version "20170403")
+    (source
+     (origin
+       (method url-fetch/zipbomb)
+       (uri (string-append "https://noto-website.storage.googleapis.com/pkgs/"
+                           "NotoSansBuhid-unhinted.zip"))
+       (file-name (string-append name "-" version ".zip"))
+       (sha256
+        (base32
+         "1wk9na94xjca4mam2ysjrbhkmx83p9kbjbvy273w5pnil75y4l75"))))
+    (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


[-- Attachment #1.19: 0018-gnu-Add-font-google-noto-sans-canadian-aboriginal.patch --]
[-- Type: text/plain, Size: 1738 bytes --]

From 3c1802cd38b60a2c23c12f59a2204e6cb10c6e78 Mon Sep 17 00:00:00 2001
From: ng0 <ng0@infotropique.org>
Date: Sat, 9 Sep 2017 19:17:05 +0000
Subject: [PATCH 18/86] gnu: Add font-google-noto-sans-canadian-aboriginal.

* gnu/packages/fonts.scm (font-google-noto-sans-canadian-aboriginal): 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 15b60c1ae..35fba3334 100644
--- a/gnu/packages/fonts.scm
+++ b/gnu/packages/fonts.scm
@@ -993,6 +993,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-canadian-aboriginal
+  (package
+    (name "font-google-noto-sans-canadian-aboriginal")
+    (version "20170403")
+    (source
+     (origin
+       (method url-fetch/zipbomb)
+       (uri (string-append "https://noto-website.storage.googleapis.com/pkgs/"
+                           "NotoSansCanadianAboriginal-unhinted.zip"))
+       (file-name (string-append name "-" version ".zip"))
+       (sha256
+        (base32
+         "1g3y512456zf9mpx1bf1iqvln7jl66q6vs5da9f2gg8xh8aazzdm"))))
+    (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


[-- Attachment #1.20: 0019-gnu-Add-font-google-noto-sans-carian.patch --]
[-- Type: text/plain, Size: 1676 bytes --]

From bebac3dd854a61b719201a80781a1535399fa60d Mon Sep 17 00:00:00 2001
From: ng0 <ng0@infotropique.org>
Date: Sat, 9 Sep 2017 19:19:01 +0000
Subject: [PATCH 19/86] gnu: Add font-google-noto-sans-carian.

* gnu/packages/fonts.scm (font-google-noto-sans-carian): 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 35fba3334..999eeac37 100644
--- a/gnu/packages/fonts.scm
+++ b/gnu/packages/fonts.scm
@@ -1014,6 +1014,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-carian
+  (package
+    (name "font-google-noto-sans-carian")
+    (version "20170403")
+    (source
+     (origin
+       (method url-fetch/zipbomb)
+       (uri (string-append "https://noto-website.storage.googleapis.com/pkgs/"
+                           "NotoSansCarian-unhinted.zip"))
+       (file-name (string-append name "-" version ".zip"))
+       (sha256
+        (base32
+         "0pq3m09acp2k8sg1jwhgawzm8f4da2p35g2ppazy84100kgk0bgi"))))
+    (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


[-- Attachment #1.21: 0020-gnu-Add-font-google-noto-sans-cham.patch --]
[-- Type: text/plain, Size: 1664 bytes --]

From 38dac4c191244fb5b7ea1feaa3f59facc7e6b1b7 Mon Sep 17 00:00:00 2001
From: ng0 <ng0@infotropique.org>
Date: Sat, 9 Sep 2017 19:20:57 +0000
Subject: [PATCH 20/86] gnu: Add font-google-noto-sans-cham.

* gnu/packages/fonts.scm (font-google-noto-sans-cham): 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 999eeac37..82243eef2 100644
--- a/gnu/packages/fonts.scm
+++ b/gnu/packages/fonts.scm
@@ -1035,6 +1035,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-cham
+  (package
+    (name "font-google-noto-sans-cham")
+    (version "20170403")
+    (source
+     (origin
+       (method url-fetch/zipbomb)
+       (uri (string-append "https://noto-website.storage.googleapis.com/pkgs/"
+                           "NotoSansCham-hinted.zip"))
+       (file-name (string-append name "-" version ".zip"))
+       (sha256
+        (base32
+         "17m7zgi8m1va15dq5h75sdg6nraz9sp9czczifsz1ib62f1lk3im"))))
+    (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


[-- Attachment #1.22: 0021-gnu-Add-font-google-noto-sans-cherokee.patch --]
[-- Type: text/plain, Size: 1684 bytes --]

From 0e2f2463d792035211df3bace9629201b8f2c7c7 Mon Sep 17 00:00:00 2001
From: ng0 <ng0@infotropique.org>
Date: Sat, 9 Sep 2017 19:22:38 +0000
Subject: [PATCH 21/86] gnu: Add font-google-noto-sans-cherokee.

* gnu/packages/fonts.scm (font-google-noto-sans-cherokee): 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 82243eef2..4a714a64e 100644
--- a/gnu/packages/fonts.scm
+++ b/gnu/packages/fonts.scm
@@ -1056,6 +1056,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-cherokee
+  (package
+    (name "font-google-noto-sans-cherokee")
+    (version "20170403")
+    (source
+     (origin
+       (method url-fetch/zipbomb)
+       (uri (string-append "https://noto-website.storage.googleapis.com/pkgs/"
+                           "NotoSansCherokee-hinted.zip"))
+       (file-name (string-append name "-" version ".zip"))
+       (sha256
+        (base32
+         "16xgqz0jc8hc2psip0sgwbi6i5nymk4752mfpshai5wdfszqg3pi"))))
+    (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


[-- Attachment #1.23: 0022-gnu-Add-font-google-noto-sans-cjk-jp.patch --]
[-- Type: text/plain, Size: 1673 bytes --]

From f665c09982ce5ebca399e3b497ed6b8ffb7f6b72 Mon Sep 17 00:00:00 2001
From: ng0 <ng0@infotropique.org>
Date: Sat, 9 Sep 2017 19:28:00 +0000
Subject: [PATCH 22/86] gnu: Add font-google-noto-sans-cjk-jp.

* gnu/packages/fonts.scm (font-google-noto-sans-cjk-jp): 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 4a714a64e..afaa93475 100644
--- a/gnu/packages/fonts.scm
+++ b/gnu/packages/fonts.scm
@@ -1077,6 +1077,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-cjk-jp
+  (package
+    (name "font-google-noto-sans-cjk-jp")
+    (version "20170403")
+    (source
+     (origin
+       (method url-fetch/zipbomb)
+       (uri (string-append "https://noto-website.storage.googleapis.com/pkgs/"
+                           "NotoSansCJKjp-hinted.zip"))
+       (file-name (string-append name "-" version ".zip"))
+       (sha256
+        (base32
+         "1ad42fk7d8r6ka7zikv2wsyrb2vfbynrqxdzj6nb3x6iiz98wwkk"))))
+    (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


[-- Attachment #1.24: 0023-gnu-Add-font-google-noto-sans-cjk-kr.patch --]
[-- Type: text/plain, Size: 1673 bytes --]

From e78166197d89e16d2ae5524638d1961cb2f85dcb Mon Sep 17 00:00:00 2001
From: ng0 <ng0@infotropique.org>
Date: Sat, 9 Sep 2017 19:30:19 +0000
Subject: [PATCH 23/86] gnu: Add font-google-noto-sans-cjk-kr.

* gnu/packages/fonts.scm (font-google-noto-sans-cjk-kr): 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 afaa93475..bc497c936 100644
--- a/gnu/packages/fonts.scm
+++ b/gnu/packages/fonts.scm
@@ -1098,6 +1098,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-cjk-kr
+  (package
+    (name "font-google-noto-sans-cjk-kr")
+    (version "20170403")
+    (source
+     (origin
+       (method url-fetch/zipbomb)
+       (uri (string-append "https://noto-website.storage.googleapis.com/pkgs/"
+                           "NotoSansCJKkr-hinted.zip"))
+       (file-name (string-append name "-" version ".zip"))
+       (sha256
+        (base32
+         "1dar14hygg96shw59jkdxznhp2fzkali93nb0cdyc7lcsrgaa5la"))))
+    (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


[-- Attachment #1.25: 0024-gnu-Add-font-google-noto-sans-cjk-sc.patch --]
[-- Type: text/plain, Size: 1673 bytes --]

From 6a13bb0c0a8500880af36e41502c74a9b14a3b53 Mon Sep 17 00:00:00 2001
From: ng0 <ng0@infotropique.org>
Date: Sat, 9 Sep 2017 19:33:59 +0000
Subject: [PATCH 24/86] gnu: Add font-google-noto-sans-cjk-sc.

* gnu/packages/fonts.scm (font-google-noto-sans-cjk-sc): 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 bc497c936..0dd0c8e01 100644
--- a/gnu/packages/fonts.scm
+++ b/gnu/packages/fonts.scm
@@ -1119,6 +1119,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-cjk-sc
+  (package
+    (name "font-google-noto-sans-cjk-sc")
+    (version "20170403")
+    (source
+     (origin
+       (method url-fetch/zipbomb)
+       (uri (string-append "https://noto-website.storage.googleapis.com/pkgs/"
+                           "NotoSansCJKsc-hinted.zip"))
+       (file-name (string-append name "-" version ".zip"))
+       (sha256
+        (base32
+         "1pxf63bi8s13fl8izkcr1gidash68mvr1r5xb6rj0fd2yy5i2qc5"))))
+    (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


[-- Attachment #1.26: 0025-gnu-Add-font-google-noto-sans-cjk-tc.patch --]
[-- Type: text/plain, Size: 1673 bytes --]

From 829fba8c8d5d5fd04a1486ae86c9e1e4c612156d Mon Sep 17 00:00:00 2001
From: ng0 <ng0@infotropique.org>
Date: Sat, 9 Sep 2017 19:35:40 +0000
Subject: [PATCH 25/86] gnu: Add font-google-noto-sans-cjk-tc.

* gnu/packages/fonts.scm (font-google-noto-sans-cjk-tc): 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 0dd0c8e01..df2371249 100644
--- a/gnu/packages/fonts.scm
+++ b/gnu/packages/fonts.scm
@@ -1140,6 +1140,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-cjk-tc
+  (package
+    (name "font-google-noto-sans-cjk-tc")
+    (version "20170403")
+    (source
+     (origin
+       (method url-fetch/zipbomb)
+       (uri (string-append "https://noto-website.storage.googleapis.com/pkgs/"
+                           "NotoSansCJKtc-hinted.zip"))
+       (file-name (string-append name "-" version ".zip"))
+       (sha256
+        (base32
+         "17f9hvhlzzqb18csc4fj6rq4m42q9cipgvw1vwf38fahjp97p9ra"))))
+    (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


[-- Attachment #1.27: 0026-gnu-Add-font-google-noto-sans-coptic.patch --]
[-- Type: text/plain, Size: 1676 bytes --]

From 2a95850b363ff81159b668b8d5d169efd8b3f967 Mon Sep 17 00:00:00 2001
From: ng0 <ng0@infotropique.org>
Date: Sat, 9 Sep 2017 19:37:48 +0000
Subject: [PATCH 26/86] gnu: Add font-google-noto-sans-coptic.

* gnu/packages/fonts.scm (font-google-noto-sans-coptic): 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 df2371249..f27c544f5 100644
--- a/gnu/packages/fonts.scm
+++ b/gnu/packages/fonts.scm
@@ -1161,6 +1161,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-coptic
+  (package
+    (name "font-google-noto-sans-coptic")
+    (version "20170403")
+    (source
+     (origin
+       (method url-fetch/zipbomb)
+       (uri (string-append "https://noto-website.storage.googleapis.com/pkgs/"
+                           "NotoSansCoptic-unhinted.zip"))
+       (file-name (string-append name "-" version ".zip"))
+       (sha256
+        (base32
+         "0fawq0q5v951m2f9fhxr3x35hj6fp1cmi9lnpsrid3kzd58mqdi1"))))
+    (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


[-- Attachment #1.28: 0027-gnu-Add-font-google-noto-sans-cuneiform.patch --]
[-- Type: text/plain, Size: 1691 bytes --]

From 6c6fad5201e208c4bc72a7eab4f9c0f05a593945 Mon Sep 17 00:00:00 2001
From: ng0 <ng0@infotropique.org>
Date: Sat, 9 Sep 2017 19:39:35 +0000
Subject: [PATCH 27/86] gnu: Add font-google-noto-sans-cuneiform.

* gnu/packages/fonts.scm (font-google-noto-sans-cuneiform): 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 f27c544f5..543d3b793 100644
--- a/gnu/packages/fonts.scm
+++ b/gnu/packages/fonts.scm
@@ -1182,6 +1182,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-cuneiform
+  (package
+    (name "font-google-noto-sans-cuneiform")
+    (version "20170403")
+    (source
+     (origin
+       (method url-fetch/zipbomb)
+       (uri (string-append "https://noto-website.storage.googleapis.com/pkgs/"
+                           "NotoSansCuneiform-unhinted.zip"))
+       (file-name (string-append name "-" version ".zip"))
+       (sha256
+        (base32
+         "1smj5rk8f4izv8zrjhcq9abv91agqpx29ysrl3da63r3fvsk11p8"))))
+    (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


[-- Attachment #1.29: 0028-gnu-Add-font-google-noto-sans-cypriot.patch --]
[-- Type: text/plain, Size: 1681 bytes --]

From b0049b9543cf930971ef1f2ff54280dadf116bb6 Mon Sep 17 00:00:00 2001
From: ng0 <ng0@infotropique.org>
Date: Sat, 9 Sep 2017 19:41:12 +0000
Subject: [PATCH 28/86] gnu: Add font-google-noto-sans-cypriot.

* gnu/packages/fonts.scm (font-google-noto-sans-cypriot): 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 543d3b793..716722146 100644
--- a/gnu/packages/fonts.scm
+++ b/gnu/packages/fonts.scm
@@ -1203,6 +1203,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-cypriot
+  (package
+    (name "font-google-noto-sans-cypriot")
+    (version "20170403")
+    (source
+     (origin
+       (method url-fetch/zipbomb)
+       (uri (string-append "https://noto-website.storage.googleapis.com/pkgs/"
+                           "NotoSansCypriot-unhinted.zip"))
+       (file-name (string-append name "-" version ".zip"))
+       (sha256
+        (base32
+         "1bpm34yr2h0z2pxhc4m9ymmbkmhqc4pkfnjj2s9nrawfshvyjppm"))))
+    (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


[-- Attachment #1.30: 0029-gnu-Add-font-google-noto-sans-deseret.patch --]
[-- Type: text/plain, Size: 1681 bytes --]

From e02458da17fd893339a11e1d528d60ad8664cad1 Mon Sep 17 00:00:00 2001
From: ng0 <ng0@infotropique.org>
Date: Sat, 9 Sep 2017 19:43:01 +0000
Subject: [PATCH 29/86] gnu: Add font-google-noto-sans-deseret.

* gnu/packages/fonts.scm (font-google-noto-sans-deseret): 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 716722146..5b9ed12e0 100644
--- a/gnu/packages/fonts.scm
+++ b/gnu/packages/fonts.scm
@@ -1224,6 +1224,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-deseret
+  (package
+    (name "font-google-noto-sans-deseret")
+    (version "20170403")
+    (source
+     (origin
+       (method url-fetch/zipbomb)
+       (uri (string-append "https://noto-website.storage.googleapis.com/pkgs/"
+                           "NotoSansDeseret-unhinted.zip"))
+       (file-name (string-append name "-" version ".zip"))
+       (sha256
+        (base32
+         "1k2zagrj2ld95qkspr5klmv7r5ryja7hh4biv7hm88s7p2vs4lwy"))))
+    (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


[-- Attachment #1.31: 0030-gnu-Add-font-google-noto-sans-devanagari.patch --]
[-- Type: text/plain, Size: 1694 bytes --]

From 4ab10abcbf13a2d2248f0f6836ce74f0dd3457e0 Mon Sep 17 00:00:00 2001
From: ng0 <ng0@infotropique.org>
Date: Sat, 9 Sep 2017 19:45:15 +0000
Subject: [PATCH 30/86] gnu: Add font-google-noto-sans-devanagari.

* gnu/packages/fonts.scm (font-google-noto-sans-devanagari): 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 5b9ed12e0..6ac6b7751 100644
--- a/gnu/packages/fonts.scm
+++ b/gnu/packages/fonts.scm
@@ -1245,6 +1245,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-devanagari
+  (package
+    (name "font-google-noto-sans-devanagari")
+    (version "20170403")
+    (source
+     (origin
+       (method url-fetch/zipbomb)
+       (uri (string-append "https://noto-website.storage.googleapis.com/pkgs/"
+                           "NotoSansDevanagari-hinted.zip"))
+       (file-name (string-append name "-" version ".zip"))
+       (sha256
+        (base32
+         "1f65ah7p3sbjrf94yvbkxn2m506swxra4dhy3ik1pm5v9wy47alb"))))
+    (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


[-- Attachment #1.32: 0031-gnu-Add-font-google-noto-sans-egyptian-hieroglyphs.patch --]
[-- Type: text/plain, Size: 1745 bytes --]

From 1da7a1d5c8fe2ce8a5ed088be8909c134618e1dd Mon Sep 17 00:00:00 2001
From: ng0 <ng0@infotropique.org>
Date: Sat, 9 Sep 2017 19:47:15 +0000
Subject: [PATCH 31/86] gnu: Add font-google-noto-sans-egyptian-hieroglyphs.

* gnu/packages/fonts.scm (font-google-noto-sans-egyptian-hieroglyphs): 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 6ac6b7751..b91bb8977 100644
--- a/gnu/packages/fonts.scm
+++ b/gnu/packages/fonts.scm
@@ -1266,6 +1266,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-egyptian-hieroglyphs
+  (package
+    (name "font-google-noto-sans-egyptian-hieroglyphs")
+    (version "20170403")
+    (source
+     (origin
+       (method url-fetch/zipbomb)
+       (uri (string-append "https://noto-website.storage.googleapis.com/pkgs/"
+                           "NotoSansEgyptianHieroglyphs-unhinted.zip"))
+       (file-name (string-append name "-" version ".zip"))
+       (sha256
+        (base32
+         "18z4xnxczcq1iwk9m4k6wb9x00mlqqsahncji7xi3axidlr0q49b"))))
+    (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


[-- Attachment #1.33: 0032-gnu-Add-font-google-noto-sans-ethiopic.patch --]
[-- Type: text/plain, Size: 1684 bytes --]

From 5c8bda9157d935d73cc2d6adab9a32028d1e4031 Mon Sep 17 00:00:00 2001
From: ng0 <ng0@infotropique.org>
Date: Sat, 9 Sep 2017 19:49:04 +0000
Subject: [PATCH 32/86] gnu: Add font-google-noto-sans-ethiopic.

* gnu/packages/fonts.scm (font-google-noto-sans-ethiopic): 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 b91bb8977..9909c5e1e 100644
--- a/gnu/packages/fonts.scm
+++ b/gnu/packages/fonts.scm
@@ -1287,6 +1287,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-ethiopic
+  (package
+    (name "font-google-noto-sans-ethiopic")
+    (version "20170403")
+    (source
+     (origin
+       (method url-fetch/zipbomb)
+       (uri (string-append "https://noto-website.storage.googleapis.com/pkgs/"
+                           "NotoSansEthiopic-hinted.zip"))
+       (file-name (string-append name "-" version ".zip"))
+       (sha256
+        (base32
+         "1wlacaa94428agafydirdrnw0197b2qvlq0mn5hsjh44dk2wwmcw"))))
+    (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


[-- Attachment #1.34: 0033-gnu-Add-font-google-noto-sans-georgian.patch --]
[-- Type: text/plain, Size: 1684 bytes --]

From 8831b10dd91d774fc2dab56998b98b5ac31bdcf3 Mon Sep 17 00:00:00 2001
From: ng0 <ng0@infotropique.org>
Date: Sat, 9 Sep 2017 19:51:23 +0000
Subject: [PATCH 33/86] gnu: Add font-google-noto-sans-georgian.

* gnu/packages/fonts.scm (font-google-noto-sans-georgian): 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 9909c5e1e..d81ceebed 100644
--- a/gnu/packages/fonts.scm
+++ b/gnu/packages/fonts.scm
@@ -1308,6 +1308,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-georgian
+  (package
+    (name "font-google-noto-sans-georgian")
+    (version "20170403")
+    (source
+     (origin
+       (method url-fetch/zipbomb)
+       (uri (string-append "https://noto-website.storage.googleapis.com/pkgs/"
+                           "NotoSansGeorgian-hinted.zip"))
+       (file-name (string-append name "-" version ".zip"))
+       (sha256
+        (base32
+         "0wx6xa3mw4092zl1c2994v4cn109ig9hfxf2p72illyga705bbbn"))))
+    (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


[-- Attachment #1.35: 0034-gnu-Add-font-google-noto-sans-glagolitic.patch --]
[-- Type: text/plain, Size: 1696 bytes --]

From 7a0b7b87e1b9c7235fcd929747e22b5755e6471e Mon Sep 17 00:00:00 2001
From: ng0 <ng0@infotropique.org>
Date: Sat, 9 Sep 2017 19:53:17 +0000
Subject: [PATCH 34/86] gnu: Add font-google-noto-sans-glagolitic.

* gnu/packages/fonts.scm (font-google-noto-sans-glagolitic): 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 d81ceebed..095d608b0 100644
--- a/gnu/packages/fonts.scm
+++ b/gnu/packages/fonts.scm
@@ -1329,6 +1329,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-glagolitic
+  (package
+    (name "font-google-noto-sans-glagolitic")
+    (version "20170403")
+    (source
+     (origin
+       (method url-fetch/zipbomb)
+       (uri (string-append "https://noto-website.storage.googleapis.com/pkgs/"
+                           "NotoSansGlagolitic-unhinted.zip"))
+       (file-name (string-append name "-" version ".zip"))
+       (sha256
+        (base32
+         "1hr2wrikq95vd58gnzf3ckx3f3vr8l28lk25v15nh2vgnc19ggz6"))))
+    (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


[-- Attachment #1.36: 0035-gnu-Add-font-google-noto-sans-gothic.patch --]
[-- Type: text/plain, Size: 1676 bytes --]

From d932c84ae7160ba544962d53bc6845ff92bfa72c Mon Sep 17 00:00:00 2001
From: ng0 <ng0@infotropique.org>
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


[-- Attachment #1.37: 0036-gnu-Add-font-google-noto-sans-gujarati.patch --]
[-- Type: text/plain, Size: 1684 bytes --]

From b196677c28015b09ad5ce14b8f47239000ce63c5 Mon Sep 17 00:00:00 2001
From: ng0 <ng0@infotropique.org>
Date: Sat, 9 Sep 2017 19:57:18 +0000
Subject: [PATCH 36/86] gnu: Add font-google-noto-sans-gujarati.

* gnu/packages/fonts.scm (font-google-noto-sans-gujarati): 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 3d284bda7..8168808e2 100644
--- a/gnu/packages/fonts.scm
+++ b/gnu/packages/fonts.scm
@@ -1371,6 +1371,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-gujarati
+  (package
+    (name "font-google-noto-sans-gujarati")
+    (version "20170403")
+    (source
+     (origin
+       (method url-fetch/zipbomb)
+       (uri (string-append "https://noto-website.storage.googleapis.com/pkgs/"
+                           "NotoSansGujarati-hinted.zip"))
+       (file-name (string-append name "-" version ".zip"))
+       (sha256
+        (base32
+         "090485jkz9iznv30h23fqqq11c8fx40zb6y7zgdc2995wabfr40w"))))
+    (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


[-- Attachment #1.38: 0037-gnu-Add-font-google-noto-sans-gurmukhi.patch --]
[-- Type: text/plain, Size: 1684 bytes --]

From 73670ab5ec585f857c3b0447c8a7c83a83321bfa Mon Sep 17 00:00:00 2001
From: ng0 <ng0@infotropique.org>
Date: Sat, 9 Sep 2017 19:58:46 +0000
Subject: [PATCH 37/86] gnu: Add font-google-noto-sans-gurmukhi.

* gnu/packages/fonts.scm (font-google-noto-sans-gurmukhi): 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 8168808e2..68bc3d9b6 100644
--- a/gnu/packages/fonts.scm
+++ b/gnu/packages/fonts.scm
@@ -1392,6 +1392,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-gurmukhi
+  (package
+    (name "font-google-noto-sans-gurmukhi")
+    (version "20170403")
+    (source
+     (origin
+       (method url-fetch/zipbomb)
+       (uri (string-append "https://noto-website.storage.googleapis.com/pkgs/"
+                           "NotoSansGurmukhi-hinted.zip"))
+       (file-name (string-append name "-" version ".zip"))
+       (sha256
+        (base32
+         "04g1jvagziwdyj1aldrqzfbdx3aqv3499fvhf20dd2qxr5i605ya"))))
+    (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


[-- Attachment #1.39: 0038-gnu-Add-font-google-noto-sans-hanunoo.patch --]
[-- Type: text/plain, Size: 1681 bytes --]

From 4833a4dbda4b94caecea00ebedd1eddf89560350 Mon Sep 17 00:00:00 2001
From: ng0 <ng0@infotropique.org>
Date: Sat, 9 Sep 2017 20:00:38 +0000
Subject: [PATCH 38/86] gnu: Add font-google-noto-sans-hanunoo.

* gnu/packages/fonts.scm (font-google-noto-sans-hanunoo): 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 68bc3d9b6..099dc1c00 100644
--- a/gnu/packages/fonts.scm
+++ b/gnu/packages/fonts.scm
@@ -1413,6 +1413,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-hanunoo
+  (package
+    (name "font-google-noto-sans-hanunoo")
+    (version "20170403")
+    (source
+     (origin
+       (method url-fetch/zipbomb)
+       (uri (string-append "https://noto-website.storage.googleapis.com/pkgs/"
+                           "NotoSansHanunoo-unhinted.zip"))
+       (file-name (string-append name "-" version ".zip"))
+       (sha256
+        (base32
+         "082rns2aphy0xwhsd861s10awmxvjqxjp2dhfv9s57dsn639dxf5"))))
+    (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


[-- Attachment #1.40: 0039-gnu-Add-font-google-noto-sans-hebrew.patch --]
[-- Type: text/plain, Size: 1674 bytes --]

From bc14e09721aeee4d0ad973969da978690d912dbc Mon Sep 17 00:00:00 2001
From: ng0 <ng0@infotropique.org>
Date: Sat, 9 Sep 2017 20:01:55 +0000
Subject: [PATCH 39/86] gnu: Add font-google-noto-sans-hebrew.

* gnu/packages/fonts.scm (font-google-noto-sans-hebrew): 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 099dc1c00..66cc9042e 100644
--- a/gnu/packages/fonts.scm
+++ b/gnu/packages/fonts.scm
@@ -1434,6 +1434,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-hebrew
+  (package
+    (name "font-google-noto-sans-hebrew")
+    (version "20170403")
+    (source
+     (origin
+       (method url-fetch/zipbomb)
+       (uri (string-append "https://noto-website.storage.googleapis.com/pkgs/"
+                           "NotoSansHebrew-hinted.zip"))
+       (file-name (string-append name "-" version ".zip"))
+       (sha256
+        (base32
+         "0h8ql5izkr4vsk6qqr3q1vakw0jfcczb1n0y8fqhrn4hnw73gynx"))))
+    (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


[-- Attachment #1.41: 0040-gnu-Add-font-google-noto-sans-imperial-aramaic.patch --]
[-- Type: text/plain, Size: 1725 bytes --]

From 0e23261f275eba06ab82bba42a1460e3281535f6 Mon Sep 17 00:00:00 2001
From: ng0 <ng0@infotropique.org>
Date: Sat, 9 Sep 2017 20:03:32 +0000
Subject: [PATCH 40/86] gnu: Add font-google-noto-sans-imperial-aramaic.

* gnu/packages/fonts.scm (font-google-noto-sans-imperial-aramaic): 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 66cc9042e..f276b1d2f 100644
--- a/gnu/packages/fonts.scm
+++ b/gnu/packages/fonts.scm
@@ -1455,6 +1455,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-imperial-aramaic
+  (package
+    (name "font-google-noto-sans-imperial-aramaic")
+    (version "20170403")
+    (source
+     (origin
+       (method url-fetch/zipbomb)
+       (uri (string-append "https://noto-website.storage.googleapis.com/pkgs/"
+                           "NotoSansImperialAramaic-unhinted.zip"))
+       (file-name (string-append name "-" version ".zip"))
+       (sha256
+        (base32
+         "1ab54vwg7rbs51c7vmsjnbq7w68jd0dmfj7a874va239k06iy3hn"))))
+    (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


[-- Attachment #1.42: 0041-gnu-Add-font-google-noto-sans-inscriptional-pahlavi.patch --]
[-- Type: text/plain, Size: 1750 bytes --]

From 6e913613b6fdccb65ab083497c83f76c9be3ede1 Mon Sep 17 00:00:00 2001
From: ng0 <ng0@infotropique.org>
Date: Sat, 9 Sep 2017 20:05:08 +0000
Subject: [PATCH 41/86] gnu: Add font-google-noto-sans-inscriptional-pahlavi.

* gnu/packages/fonts.scm (font-google-noto-sans-inscriptional-pahlavi): 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 f276b1d2f..4a16bac38 100644
--- a/gnu/packages/fonts.scm
+++ b/gnu/packages/fonts.scm
@@ -1476,6 +1476,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-inscriptional-pahlavi
+  (package
+    (name "font-google-noto-sans-inscriptional-pahlavi")
+    (version "20170403")
+    (source
+     (origin
+       (method url-fetch/zipbomb)
+       (uri (string-append "https://noto-website.storage.googleapis.com/pkgs/"
+                           "NotoSansInscriptionalPahlavi-unhinted.zip"))
+       (file-name (string-append name "-" version ".zip"))
+       (sha256
+        (base32
+         "0264jyk09iba3zvgxqhiv9vlal78ffbc9wifvcssq571hnqpp47g"))))
+    (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


[-- Attachment #1.43: 0042-gnu-Add-font-google-noto-sans-inscriptional-parthian.patch --]
[-- Type: text/plain, Size: 1755 bytes --]

From a0f616a0388a2af62b0a46d92175f8f53ba56ce1 Mon Sep 17 00:00:00 2001
From: ng0 <ng0@infotropique.org>
Date: Sat, 9 Sep 2017 20:06:36 +0000
Subject: [PATCH 42/86] gnu: Add font-google-noto-sans-inscriptional-parthian.

* gnu/packages/fonts.scm (font-google-noto-sans-inscriptional-parthian): 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 4a16bac38..b832381d0 100644
--- a/gnu/packages/fonts.scm
+++ b/gnu/packages/fonts.scm
@@ -1497,6 +1497,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-inscriptional-parthian
+  (package
+    (name "font-google-noto-sans-inscriptional-parthian")
+    (version "20170403")
+    (source
+     (origin
+       (method url-fetch/zipbomb)
+       (uri (string-append "https://noto-website.storage.googleapis.com/pkgs/"
+                           "NotoSansInscriptionalParthian-unhinted.zip"))
+       (file-name (string-append name "-" version ".zip"))
+       (sha256
+        (base32
+         "1kagv06hi922m4811k4knyarlxgps25zfm6iz1f9a8cl191jjnn4"))))
+    (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


[-- Attachment #1.44: 0043-gnu-Add-font-google-noto-sans-javanese.patch --]
[-- Type: text/plain, Size: 1686 bytes --]

From 43b4e1613fc49ba2c80a3a03b26ef076f625b8dd Mon Sep 17 00:00:00 2001
From: ng0 <ng0@infotropique.org>
Date: Sat, 9 Sep 2017 20:13:57 +0000
Subject: [PATCH 43/86] gnu: Add font-google-noto-sans-javanese.

* gnu/packages/fonts.scm (font-google-noto-sans-javanese): 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 b832381d0..5592dbb98 100644
--- a/gnu/packages/fonts.scm
+++ b/gnu/packages/fonts.scm
@@ -1518,6 +1518,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-javanese
+  (package
+    (name "font-google-noto-sans-javanese")
+    (version "20170403")
+    (source
+     (origin
+       (method url-fetch/zipbomb)
+       (uri (string-append "https://noto-website.storage.googleapis.com/pkgs/"
+                           "NotoSansJavanese-unhinted.zip"))
+       (file-name (string-append name "-" version ".zip"))
+       (sha256
+        (base32
+         "0y24bjifj63plcfxfakbwf38914myi0bqjqs8jlnzdfxn0a7y0lp"))))
+    (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


[-- Attachment #1.45: 0044-gnu-Add-font-google-noto-sans-kaithi.patch --]
[-- Type: text/plain, Size: 1676 bytes --]

From 086fabff93124f517b1565c400dd392735bdc468 Mon Sep 17 00:00:00 2001
From: ng0 <ng0@infotropique.org>
Date: Sat, 9 Sep 2017 20:15:39 +0000
Subject: [PATCH 44/86] gnu: Add font-google-noto-sans-kaithi.

* gnu/packages/fonts.scm (font-google-noto-sans-kaithi): 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 5592dbb98..065b4ed80 100644
--- a/gnu/packages/fonts.scm
+++ b/gnu/packages/fonts.scm
@@ -1539,6 +1539,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-kaithi
+  (package
+    (name "font-google-noto-sans-kaithi")
+    (version "20170403")
+    (source
+     (origin
+       (method url-fetch/zipbomb)
+       (uri (string-append "https://noto-website.storage.googleapis.com/pkgs/"
+                           "NotoSansKaithi-unhinted.zip"))
+       (file-name (string-append name "-" version ".zip"))
+       (sha256
+        (base32
+         "1bzypzr9fy07gg74j35264x1mlm7bp8bybjdzfmyxhrp6k1vw719"))))
+    (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


[-- Attachment #1.46: 0045-gnu-Add-font-google-noto-sans-kannada.patch --]
[-- Type: text/plain, Size: 1679 bytes --]

From 1ffd46f95a6cf167f66b0fda3a9ec18eb0b84ad7 Mon Sep 17 00:00:00 2001
From: ng0 <ng0@infotropique.org>
Date: Sat, 9 Sep 2017 20:17:55 +0000
Subject: [PATCH 45/86] gnu: Add font-google-noto-sans-kannada.

* gnu/packages/fonts.scm (font-google-noto-sans-kannada): 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 065b4ed80..8c2eab299 100644
--- a/gnu/packages/fonts.scm
+++ b/gnu/packages/fonts.scm
@@ -1560,6 +1560,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-kannada
+  (package
+    (name "font-google-noto-sans-kannada")
+    (version "20170403")
+    (source
+     (origin
+       (method url-fetch/zipbomb)
+       (uri (string-append "https://noto-website.storage.googleapis.com/pkgs/"
+                           "NotoSansKannada-hinted.zip"))
+       (file-name (string-append name "-" version ".zip"))
+       (sha256
+        (base32
+         "1n6xmzjl8jah0rfizyphkmx889pgfc1jak7y7gk3570b8vm6icam"))))
+    (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


[-- Attachment #1.47: 0046-gnu-Add-font-google-noto-sans-kayah-li.patch --]
[-- Type: text/plain, Size: 1685 bytes --]

From 62095119e0b4ecd8d0da023acf8477e17f0b0f8c Mon Sep 17 00:00:00 2001
From: ng0 <ng0@infotropique.org>
Date: Sat, 9 Sep 2017 20:21:06 +0000
Subject: [PATCH 46/86] gnu: Add font-google-noto-sans-kayah-li.

* gnu/packages/fonts.scm (font-google-noto-sans-kayah-li): 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 8c2eab299..0dd4425d4 100644
--- a/gnu/packages/fonts.scm
+++ b/gnu/packages/fonts.scm
@@ -1581,6 +1581,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-kayah-li
+  (package
+    (name "font-google-noto-sans-kayah-li")
+    (version "20170403")
+    (source
+     (origin
+       (method url-fetch/zipbomb)
+       (uri (string-append "https://noto-website.storage.googleapis.com/pkgs/"
+                           "NotoSansKayahLi-unhinted.zip"))
+       (file-name (string-append name "-" version ".zip"))
+       (sha256
+        (base32
+         "13l9wmhsrkzgjp0lgp1jcnkwxmmszni4lf3kgxmif33sc059a3cc"))))
+    (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


[-- Attachment #1.48: 0047-gnu-Add-font-google-noto-sans-kharoshthi.patch --]
[-- Type: text/plain, Size: 1696 bytes --]

From ccf060029c065b60d5c2968e6ef7206079ca854a Mon Sep 17 00:00:00 2001
From: ng0 <ng0@infotropique.org>
Date: Sat, 9 Sep 2017 20:35:39 +0000
Subject: [PATCH 47/86] gnu: Add font-google-noto-sans-kharoshthi.

* gnU/packages/fonts.scm (font-google-noto-sans-kharoshthi): 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 0dd4425d4..0591c8d21 100644
--- a/gnu/packages/fonts.scm
+++ b/gnu/packages/fonts.scm
@@ -1602,6 +1602,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-kharoshthi
+  (package
+    (name "font-google-noto-sans-kharoshthi")
+    (version "20170403")
+    (source
+     (origin
+       (method url-fetch/zipbomb)
+       (uri (string-append "https://noto-website.storage.googleapis.com/pkgs/"
+                           "NotoSansKharoshthi-unhinted.zip"))
+       (file-name (string-append name "-" version ".zip"))
+       (sha256
+        (base32
+         "0r3pc34014dc9rh4647x1mmfpcxfj0h16fiqy1ps1768xpwabfx4"))))
+    (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


[-- Attachment #1.49: 0048-gnu-Add-font-google-noto-sans-khmer.patch --]
[-- Type: text/plain, Size: 1669 bytes --]

From d32ed8bc76e4f38ecd874c59146b93d2b7a68886 Mon Sep 17 00:00:00 2001
From: ng0 <ng0@infotropique.org>
Date: Sat, 9 Sep 2017 20:36:54 +0000
Subject: [PATCH 48/86] gnu: Add font-google-noto-sans-khmer.

* gnu/packages/fonts.scm (font-google-noto-sans-khmer): 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 0591c8d21..f8cffd9f2 100644
--- a/gnu/packages/fonts.scm
+++ b/gnu/packages/fonts.scm
@@ -1623,6 +1623,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-khmer
+  (package
+    (name "font-google-noto-sans-khmer")
+    (version "20170403")
+    (source
+     (origin
+       (method url-fetch/zipbomb)
+       (uri (string-append "https://noto-website.storage.googleapis.com/pkgs/"
+                           "NotoSansKhmer-hinted.zip"))
+       (file-name (string-append name "-" version ".zip"))
+       (sha256
+        (base32
+         "1mz6ill13xdd4cqn9rz0r084wfy55b3k5mfalz1c39iibpd0pmbj"))))
+    (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


[-- Attachment #1.50: 0049-gnu-Add-font-google-noto-sans-lao.patch --]
[-- Type: text/plain, Size: 1659 bytes --]

From 34fd9a50b016db863787cff896becfce42e3f099 Mon Sep 17 00:00:00 2001
From: ng0 <ng0@infotropique.org>
Date: Sat, 9 Sep 2017 20:46:32 +0000
Subject: [PATCH 49/86] gnu: Add font-google-noto-sans-lao.

* gnu/packages/fonts.scm (font-google-noto-sans-lao): 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 f8cffd9f2..3ca4083c9 100644
--- a/gnu/packages/fonts.scm
+++ b/gnu/packages/fonts.scm
@@ -1644,6 +1644,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-lao
+  (package
+    (name "font-google-noto-sans-lao")
+    (version "20170403")
+    (source
+     (origin
+       (method url-fetch/zipbomb)
+       (uri (string-append "https://noto-website.storage.googleapis.com/pkgs/"
+                           "NotoSansLao-hinted.zip"))
+       (file-name (string-append name "-" version ".zip"))
+       (sha256
+        (base32
+         "0cfhz21zasyi1z6n6mf7dr1f1xz5ljikhwabai9ch13dckf3w5s1"))))
+    (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


[-- Attachment #1.51: 0050-gnu-Add-font-google-noto-sans-lepcha.patch --]
[-- Type: text/plain, Size: 1676 bytes --]

From 5ca79a6a04d593055b97c4d32a0b87cde40c4acf Mon Sep 17 00:00:00 2001
From: ng0 <ng0@infotropique.org>
Date: Sat, 9 Sep 2017 20:51:17 +0000
Subject: [PATCH 50/86] gnu: Add font-google-noto-sans-lepcha.

* gnu/packages/fonts.scm (font-google-noto-sans-lepcha): 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 3ca4083c9..ea8bf414c 100644
--- a/gnu/packages/fonts.scm
+++ b/gnu/packages/fonts.scm
@@ -1665,6 +1665,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-lepcha
+  (package
+    (name "font-google-noto-sans-lepcha")
+    (version "20170403")
+    (source
+     (origin
+       (method url-fetch/zipbomb)
+       (uri (string-append "https://noto-website.storage.googleapis.com/pkgs/"
+                           "NotoSansLepcha-unhinted.zip"))
+       (file-name (string-append name "-" version ".zip"))
+       (sha256
+        (base32
+         "1bjmc7s3kr4k7m0cbpyf4gja72cbja8bbr4h9jr1q4jxsgqfca8j"))))
+    (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


[-- Attachment #1.52: 0051-gnu-Add-font-google-noto-sans-limbu.patch --]
[-- Type: text/plain, Size: 1672 bytes --]

From ef6a27cc017c311c45e3d688551d19e3cb164973 Mon Sep 17 00:00:00 2001
From: ng0 <ng0@infotropique.org>
Date: Sun, 10 Sep 2017 07:17:00 +0000
Subject: [PATCH 51/86] gnu: Add font-google-noto-sans-limbu.

* gnu/packages/fonts.scm (font-google-noto-sans-limbu): 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 ea8bf414c..8bd8b83a1 100644
--- a/gnu/packages/fonts.scm
+++ b/gnu/packages/fonts.scm
@@ -1686,6 +1686,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-limbu
+  (package
+    (name "font-google-noto-sans-limbu")
+    (version "20170403")
+    (source
+     (origin
+       (method url-fetch/zipbomb)
+       (uri (string-append "https://noto-website.storage.googleapis.com/pkgs/"
+                           "NotoSansLimbu-unhinted.zip"))
+       (file-name (string-append name "-" version ".zip"))
+       (sha256
+        (base32
+         "0fbhvf7qh13517368fcri9bgg83hv8jhc4sddqis4f2dynmakr43"))))
+    (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


[-- Attachment #1.53: 0052-gnu-Add-font-google-noto-sans-linear-b.patch --]
[-- Type: text/plain, Size: 1683 bytes --]

From 00025a80dfa6343cbc7bd95cc9589d3caeae038c Mon Sep 17 00:00:00 2001
From: ng0 <ng0@infotropique.org>
Date: Sun, 10 Sep 2017 07:18:36 +0000
Subject: [PATCH 52/86] gnu: Add font-google-noto-sans-linear-b.

* gnu/packages/fonts.scm (font-google-noto-sans-limbu): 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 8bd8b83a1..d9c8cec31 100644
--- a/gnu/packages/fonts.scm
+++ b/gnu/packages/fonts.scm
@@ -1707,6 +1707,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-linear-b
+  (package
+    (name "font-google-noto-sans-linear-b")
+    (version "20170403")
+    (source
+     (origin
+       (method url-fetch/zipbomb)
+       (uri (string-append "https://noto-website.storage.googleapis.com/pkgs/"
+                           "NotoSansLinearB-unhinted.zip"))
+       (file-name (string-append name "-" version ".zip"))
+       (sha256
+        (base32
+         "1k4zqqw8ckqsims59ws8zvfnp9iydr912drqcfghqcp91di6ja6s"))))
+    (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


[-- Attachment #1.54: 0053-gnu-Add-font-google-noto-sans-lisu.patch --]
[-- Type: text/plain, Size: 1667 bytes --]

From bed023794ed5681f80952dd58812b7b3c88407b6 Mon Sep 17 00:00:00 2001
From: ng0 <ng0@infotropique.org>
Date: Sun, 10 Sep 2017 07:20:05 +0000
Subject: [PATCH 53/86] gnu: Add font-google-noto-sans-lisu.

* gnu/packages/fonts.scm (font-google-noto-sans-lisu): 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 d9c8cec31..9afbf334c 100644
--- a/gnu/packages/fonts.scm
+++ b/gnu/packages/fonts.scm
@@ -1728,6 +1728,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-lisu
+  (package
+    (name "font-google-noto-sans-lisu")
+    (version "20170403")
+    (source
+     (origin
+       (method url-fetch/zipbomb)
+       (uri (string-append "https://noto-website.storage.googleapis.com/pkgs/"
+                           "NotoSansLisu-unhinted.zip"))
+       (file-name (string-append name "-" version ".zip"))
+       (sha256
+        (base32
+         "1532nyhxzkzn97whvg7ykgiv65v9j080i77bx135y0vbi81aipb9"))))
+    (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


[-- Attachment #1.55: 0054-gnu-Add-font-google-noto-sans-lycian.patch --]
[-- Type: text/plain, Size: 1677 bytes --]

From aed8be29f731818bd848b9b7b029bbff2f8fa192 Mon Sep 17 00:00:00 2001
From: ng0 <ng0@infotropique.org>
Date: Sun, 10 Sep 2017 07:22:39 +0000
Subject: [PATCH 54/86] gnu: Add font-google-noto-sans-lycian.

* gnu/packages/fonts.scm (font-google-noto-sans-lycian): 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 9afbf334c..76422cf28 100644
--- a/gnu/packages/fonts.scm
+++ b/gnu/packages/fonts.scm
@@ -1749,6 +1749,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-lycian
+  (package
+    (name "font-google-noto-sans-lycian")
+    (version "20170403")
+    (source
+     (origin
+       (method url-fetch/zipbomb)
+       (uri (string-append "https://noto-website.storage.googleapis.com/pkgs/"
+                           "NotoSansLycian-unhinted.zip"))
+       (file-name (string-append name "-" version ".zip"))
+       (sha256
+        (base32
+         "0ybpw7khiwg7p7c97wm4lj2nw7r64pdsz36r6czalrfi3d07lm29"))))
+    (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


[-- Attachment #1.56: 0055-gnu-Add-font-google-noto-sans-malayalam.patch --]
[-- Type: text/plain, Size: 1690 bytes --]

From 336a55eeae0cae815ca3f323f45566374369ef06 Mon Sep 17 00:00:00 2001
From: ng0 <ng0@infotropique.org>
Date: Sun, 10 Sep 2017 07:24:32 +0000
Subject: [PATCH 55/86] gnu: Add font-google-noto-sans-malayalam.

* gnu/packages/fonts.scm (font-google-noto-sans-malayalam): 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 76422cf28..2c940a4cd 100644
--- a/gnu/packages/fonts.scm
+++ b/gnu/packages/fonts.scm
@@ -1770,6 +1770,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-malayalam
+  (package
+    (name "font-google-noto-sans-malayalam")
+    (version "20170403")
+    (source
+     (origin
+       (method url-fetch/zipbomb)
+       (uri (string-append "https://noto-website.storage.googleapis.com/pkgs/"
+                           "NotoSansMalayalam-hinted.zip"))
+       (file-name (string-append name "-" version ".zip"))
+       (sha256
+        (base32
+         "1ywfdasz00mv50m6smv1dry238rsxs9frjk0660ankirp2w39v10"))))
+    (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


[-- Attachment #1.57: 0056-gnu-Add-font-google-noto-sans-meetei-mayek.patch --]
[-- Type: text/plain, Size: 1706 bytes --]

From 428015976f264112fea10227e0c0dcc9683ee8c4 Mon Sep 17 00:00:00 2001
From: ng0 <ng0@infotropique.org>
Date: Sun, 10 Sep 2017 07:26:33 +0000
Subject: [PATCH 56/86] gnu: Add font-google-noto-sans-meetei-mayek.

* gnu/packages/fonts.scm (font-google-noto-sans-meetei-mayek): 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 2c940a4cd..0e8d1b2e4 100644
--- a/gnu/packages/fonts.scm
+++ b/gnu/packages/fonts.scm
@@ -1791,6 +1791,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-meetei-mayek
+  (package
+    (name "font-google-noto-sans-meetei-mayek")
+    (version "20170403")
+    (source
+     (origin
+       (method url-fetch/zipbomb)
+       (uri (string-append "https://noto-website.storage.googleapis.com/pkgs/"
+                           "NotoSansMeeteiMayek-unhinted.zip"))
+       (file-name (string-append name "-" version ".zip"))
+       (sha256
+        (base32
+         "0c4h9xydsmr8y3l1sqgx1fp7w1s10hpm5y5s5ay5sx2k01y32gds"))))
+    (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


[-- Attachment #1.58: 0057-gnu-Add-font-google-noto-sans-myanmar.patch --]
[-- Type: text/plain, Size: 1680 bytes --]

From ffe6dc7939be2c5a05f2974547c859f0b2af7fe4 Mon Sep 17 00:00:00 2001
From: ng0 <ng0@infotropique.org>
Date: Sun, 10 Sep 2017 07:28:40 +0000
Subject: [PATCH 57/86] gnu: Add font-google-noto-sans-myanmar.

* gnu/packages/fonts.scm (font-google-noto-sans-myanmar): 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 0e8d1b2e4..0176868a9 100644
--- a/gnu/packages/fonts.scm
+++ b/gnu/packages/fonts.scm
@@ -1812,6 +1812,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-myanmar
+  (package
+    (name "font-google-noto-sans-myanmar")
+    (version "20170403")
+    (source
+     (origin
+       (method url-fetch/zipbomb)
+       (uri (string-append "https://noto-website.storage.googleapis.com/pkgs/"
+                           "NotoSansMyanmar-hinted.zip"))
+       (file-name (string-append name "-" version ".zip"))
+       (sha256
+        (base32
+         "09yyrw3ma7dm1njyi6hn39fjpsjy6vk99jrzrvqplgzvblcfwmm6"))))
+    (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


[-- Attachment #1.59: 0058-gnu-Add-font-google-noto-sans-n-ko.patch --]
[-- Type: text/plain, Size: 1666 bytes --]

From ed95f78947fccc804a91285dd49854757844ab4b Mon Sep 17 00:00:00 2001
From: ng0 <ng0@infotropique.org>
Date: Sun, 10 Sep 2017 07:30:46 +0000
Subject: [PATCH 58/86] gnu: Add font-google-noto-sans-n-ko.

* gnu/packages/fonts.scm (font-google-noto-sans-n-ko): 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 0176868a9..0a7c7e104 100644
--- a/gnu/packages/fonts.scm
+++ b/gnu/packages/fonts.scm
@@ -1833,6 +1833,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-n-ko
+  (package
+    (name "font-google-noto-sans-n-ko")
+    (version "20170403")
+    (source
+     (origin
+       (method url-fetch/zipbomb)
+       (uri (string-append "https://noto-website.storage.googleapis.com/pkgs/"
+                           "NotoSansNKo-unhinted.zip"))
+       (file-name (string-append name "-" version ".zip"))
+       (sha256
+        (base32
+         "1xkfbjlvlfsgy8jamv986ncrrsvyrm82iqxf1qj34c3q5i01rjfs"))))
+    (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


[-- Attachment #1.60: 0059-gnu-Add-font-google-noto-sans-ogham.patch --]
[-- Type: text/plain, Size: 1672 bytes --]

From 8dbb96067951aa8de669b078740408a01dfec489 Mon Sep 17 00:00:00 2001
From: ng0 <ng0@infotropique.org>
Date: Sun, 10 Sep 2017 07:32:12 +0000
Subject: [PATCH 59/86] gnu: Add font-google-noto-sans-ogham.

* gnu/packages/fonts.scm (font-google-noto-sans-ogham): 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 0a7c7e104..c5e185971 100644
--- a/gnu/packages/fonts.scm
+++ b/gnu/packages/fonts.scm
@@ -1854,6 +1854,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-ogham
+  (package
+    (name "font-google-noto-sans-ogham")
+    (version "20170403")
+    (source
+     (origin
+       (method url-fetch/zipbomb)
+       (uri (string-append "https://noto-website.storage.googleapis.com/pkgs/"
+                           "NotoSansOgham-unhinted.zip"))
+       (file-name (string-append name "-" version ".zip"))
+       (sha256
+        (base32
+         "159clwnmxws7l3gma90gd8cv24728120r8c7g46wqm23kf7l2lzx"))))
+    (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


[-- Attachment #1.61: 0060-gnu-Add-font-google-noto-sans-ol-chiki.patch --]
[-- Type: text/plain, Size: 1686 bytes --]

From 655eb171bd4e673125159e811861e2dce4e1fa73 Mon Sep 17 00:00:00 2001
From: ng0 <ng0@infotropique.org>
Date: Sun, 10 Sep 2017 07:33:46 +0000
Subject: [PATCH 60/86] gnu: Add font-google-noto-sans-ol-chiki.

* gnu/packages/fonts.scm (font-google-noto-sans-ol-chiki): 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 c5e185971..e5363df44 100644
--- a/gnu/packages/fonts.scm
+++ b/gnu/packages/fonts.scm
@@ -1875,6 +1875,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-ol-chiki
+  (package
+    (name "font-google-noto-sans-ol-chiki")
+    (version "20170403")
+    (source
+     (origin
+       (method url-fetch/zipbomb)
+       (uri (string-append "https://noto-website.storage.googleapis.com/pkgs/"
+                           "NotoSansOlChiki-unhinted.zip"))
+       (file-name (string-append name "-" version ".zip"))
+       (sha256
+        (base32
+         "10k0bdaw2bw7g3vq5s53cqzrgli2791p6vj002fx1im3z7ikypf0"))))
+    (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


[-- Attachment #1.62: 0061-gnu-Add-font-google-noto-sans-old-italic.patch --]
[-- Type: text/plain, Size: 1696 bytes --]

From e755716a743fde85c6d430916ec156f9300ed88f Mon Sep 17 00:00:00 2001
From: ng0 <ng0@infotropique.org>
Date: Sun, 10 Sep 2017 07:35:41 +0000
Subject: [PATCH 61/86] gnu: Add font-google-noto-sans-old-italic.

* gnu/packages/fonts.scm (font-google-noto-sans-old-italic): 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 e5363df44..28e518aa4 100644
--- a/gnu/packages/fonts.scm
+++ b/gnu/packages/fonts.scm
@@ -1896,6 +1896,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-old-italic
+  (package
+    (name "font-google-noto-sans-old-italic")
+    (version "20170403")
+    (source
+     (origin
+       (method url-fetch/zipbomb)
+       (uri (string-append "https://noto-website.storage.googleapis.com/pkgs/"
+                           "NotoSansOldItalic-unhinted.zip"))
+       (file-name (string-append name "-" version ".zip"))
+       (sha256
+        (base32
+         "1pck8fsrvb3filrcq2gyzkd6mb12g0sna62mzq35g9ralcckvm55"))))
+    (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


[-- Attachment #1.63: 0062-gnu-Add-font-google-noto-sans-old-turkic.patch --]
[-- Type: text/plain, Size: 1696 bytes --]

From 4fa219241564a7f8d84c785ae381baf32a0be1b1 Mon Sep 17 00:00:00 2001
From: ng0 <ng0@infotropique.org>
Date: Sun, 10 Sep 2017 07:37:33 +0000
Subject: [PATCH 62/86] gnu: Add font-google-noto-sans-old-turkic.

* gnu/packages/fonts.scm (font-google-noto-sans-old-turkic): 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 28e518aa4..16b139bca 100644
--- a/gnu/packages/fonts.scm
+++ b/gnu/packages/fonts.scm
@@ -1917,6 +1917,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-old-turkic
+  (package
+    (name "font-google-noto-sans-old-turkic")
+    (version "20170403")
+    (source
+     (origin
+       (method url-fetch/zipbomb)
+       (uri (string-append "https://noto-website.storage.googleapis.com/pkgs/"
+                           "NotoSansOldTurkic-unhinted.zip"))
+       (file-name (string-append name "-" version ".zip"))
+       (sha256
+        (base32
+         "07rjnip0p2yxgv05vaavqp99nmgljvcv9b0901lmqf1fw2wcv6nk"))))
+    (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


[-- Attachment #1.64: 0063-gnu-Add-font-google-noto-sans-oriya.patch --]
[-- Type: text/plain, Size: 1670 bytes --]

From c3154082fa0cf754affd989081e0b0833fb557c7 Mon Sep 17 00:00:00 2001
From: ng0 <ng0@infotropique.org>
Date: Sun, 10 Sep 2017 07:39:40 +0000
Subject: [PATCH 63/86] gnu: Add font-google-noto-sans-oriya.

* gnu/packages/fonts.scm (font-google-noto-sans-oriya): 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 16b139bca..15a2dd02e 100644
--- a/gnu/packages/fonts.scm
+++ b/gnu/packages/fonts.scm
@@ -1938,6 +1938,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-oriya
+  (package
+    (name "font-google-noto-sans-oriya")
+    (version "20170403")
+    (source
+     (origin
+       (method url-fetch/zipbomb)
+       (uri (string-append "https://noto-website.storage.googleapis.com/pkgs/"
+                           "NotoSansOriya-hinted.zip"))
+       (file-name (string-append name "-" version ".zip"))
+       (sha256
+        (base32
+         "1i5bwf0j18k2hl8g56rzl1jr1dy9s8xsbriawfxczvqz6rjwqy3g"))))
+    (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


[-- Attachment #1.65: 0064-gnu-Add-font-google-noto-sans-osmanya.patch --]
[-- Type: text/plain, Size: 1682 bytes --]

From 3dc2930fb39bbd856c293cf16382843ada07d2a8 Mon Sep 17 00:00:00 2001
From: ng0 <ng0@infotropique.org>
Date: Sun, 10 Sep 2017 07:41:39 +0000
Subject: [PATCH 64/86] gnu: Add font-google-noto-sans-osmanya.

* gnu/packages/fonts.scm (font-google-noto-sans-osmanya): 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 15a2dd02e..4154b7072 100644
--- a/gnu/packages/fonts.scm
+++ b/gnu/packages/fonts.scm
@@ -1959,6 +1959,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-osmanya
+  (package
+    (name "font-google-noto-sans-osmanya")
+    (version "20170403")
+    (source
+     (origin
+       (method url-fetch/zipbomb)
+       (uri (string-append "https://noto-website.storage.googleapis.com/pkgs/"
+                           "NotoSansOsmanya-unhinted.zip"))
+       (file-name (string-append name "-" version ".zip"))
+       (sha256
+        (base32
+         "0ql4xhyfcfximb9lm9y0xcdacidc4v9d66lphnxjg0yq2shrbdk4"))))
+    (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


[-- Attachment #1.66: 0065-gnu-Add-font-google-noto-sans-rejang.patch --]
[-- Type: text/plain, Size: 1677 bytes --]

From e357b7f6be6a96f30342546c28ec4f67a2ba53ef Mon Sep 17 00:00:00 2001
From: ng0 <ng0@infotropique.org>
Date: Sun, 10 Sep 2017 07:42:52 +0000
Subject: [PATCH 65/86] gnu: Add font-google-noto-sans-rejang.

* gnu/packages/fonts.scm (font-google-noto-sans-rejang): 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 4154b7072..067699991 100644
--- a/gnu/packages/fonts.scm
+++ b/gnu/packages/fonts.scm
@@ -1980,6 +1980,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-rejang
+  (package
+    (name "font-google-noto-sans-rejang")
+    (version "20170403")
+    (source
+     (origin
+       (method url-fetch/zipbomb)
+       (uri (string-append "https://noto-website.storage.googleapis.com/pkgs/"
+                           "NotoSansRejang-unhinted.zip"))
+       (file-name (string-append name "-" version ".zip"))
+       (sha256
+        (base32
+         "0h4fsfw2k1g6h4887khf9vn7ch3dpncsbkada9zw86vnp0al29f9"))))
+    (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


[-- Attachment #1.67: 0066-gnu-Add-font-google-noto-sans-runic.patch --]
[-- Type: text/plain, Size: 1672 bytes --]

From 29751c3a35c6e736997ec42991affe599c974531 Mon Sep 17 00:00:00 2001
From: ng0 <ng0@infotropique.org>
Date: Sun, 10 Sep 2017 07:44:41 +0000
Subject: [PATCH 66/86] gnu: Add font-google-noto-sans-runic.

* gnu/packages/fonts.scm (font-google-noto-sans-runic): 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 067699991..ff8248288 100644
--- a/gnu/packages/fonts.scm
+++ b/gnu/packages/fonts.scm
@@ -2001,6 +2001,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-runic
+  (package
+    (name "font-google-noto-sans-runic")
+    (version "20170403")
+    (source
+     (origin
+       (method url-fetch/zipbomb)
+       (uri (string-append "https://noto-website.storage.googleapis.com/pkgs/"
+                           "NotoSansRunic-unhinted.zip"))
+       (file-name (string-append name "-" version ".zip"))
+       (sha256
+        (base32
+         "0drdppxxmncnaxh0y46kqvr6zpc7mqb6kr7azj286cabih7yv06p"))))
+    (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


[-- Attachment #1.68: 0067-gnu-Add-font-google-noto-sans-samaritan.patch --]
[-- Type: text/plain, Size: 1692 bytes --]

From 4831ba28f0d2c0b9e7abb079b940121530a96d18 Mon Sep 17 00:00:00 2001
From: ng0 <ng0@infotropique.org>
Date: Sun, 10 Sep 2017 07:46:07 +0000
Subject: [PATCH 67/86] gnu: Add font-google-noto-sans-samaritan.

* gnu/packages/fonts.scm (font-google-noto-sans-samaritan): 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 ff8248288..e949ff419 100644
--- a/gnu/packages/fonts.scm
+++ b/gnu/packages/fonts.scm
@@ -2022,6 +2022,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-samaritan
+  (package
+    (name "font-google-noto-sans-samaritan")
+    (version "20170403")
+    (source
+     (origin
+       (method url-fetch/zipbomb)
+       (uri (string-append "https://noto-website.storage.googleapis.com/pkgs/"
+                           "NotoSansSamaritan-unhinted.zip"))
+       (file-name (string-append name "-" version ".zip"))
+       (sha256
+        (base32
+         "0psi0c1vqgwjwfak2ldfcfbdiskmcfpcza95v8xi8mxnv61cbkl0"))))
+    (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


[-- Attachment #1.69: 0068-gnu-Add-font-google-noto-sans-shavian.patch --]
[-- Type: text/plain, Size: 1682 bytes --]

From 455f01c3736106c77af4b3738528f95b4fee6f4c Mon Sep 17 00:00:00 2001
From: ng0 <ng0@infotropique.org>
Date: Sun, 10 Sep 2017 07:47:36 +0000
Subject: [PATCH 68/86] gnu: Add font-google-noto-sans-shavian.

* gnu/packages/fonts.scm (font-google-noto-sans-shavian): 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 e949ff419..8d3a6626e 100644
--- a/gnu/packages/fonts.scm
+++ b/gnu/packages/fonts.scm
@@ -2043,6 +2043,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-shavian
+  (package
+    (name "font-google-noto-sans-shavian")
+    (version "20170403")
+    (source
+     (origin
+       (method url-fetch/zipbomb)
+       (uri (string-append "https://noto-website.storage.googleapis.com/pkgs/"
+                           "NotoSansShavian-unhinted.zip"))
+       (file-name (string-append name "-" version ".zip"))
+       (sha256
+        (base32
+         "0iwzyjl5ysimvjk4hbcb3kkc9ccjybfvr6l2s5yivvfglm2p1pbf"))))
+    (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


[-- Attachment #1.70: 0069-gnu-Add-font-google-noto-sans-sundanese.patch --]
[-- Type: text/plain, Size: 1692 bytes --]

From 9397fd28514cc1fd4b09ba6f965cd842a3269009 Mon Sep 17 00:00:00 2001
From: ng0 <ng0@infotropique.org>
Date: Sun, 10 Sep 2017 07:49:53 +0000
Subject: [PATCH 69/86] gnu: Add font-google-noto-sans-sundanese.

* gnu/packages/fonts.scm (font-google-noto-sans-sundanese): 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 8d3a6626e..5f82df7bc 100644
--- a/gnu/packages/fonts.scm
+++ b/gnu/packages/fonts.scm
@@ -2064,6 +2064,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-sundanese
+  (package
+    (name "font-google-noto-sans-sundanese")
+    (version "20170403")
+    (source
+     (origin
+       (method url-fetch/zipbomb)
+       (uri (string-append "https://noto-website.storage.googleapis.com/pkgs/"
+                           "NotoSansSundanese-unhinted.zip"))
+       (file-name (string-append name "-" version ".zip"))
+       (sha256
+        (base32
+         "0vr1a81cd19xz5afmy55f1f6hk2ngj40r3034q160gq0avxw4jh6"))))
+    (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


[-- Attachment #1.71: 0070-gnu-Add-font-google-noto-sans-syloti-nagri.patch --]
[-- Type: text/plain, Size: 1706 bytes --]

From 6832c1a9e5a7585cd0122527bce3e25631ec6b13 Mon Sep 17 00:00:00 2001
From: ng0 <ng0@infotropique.org>
Date: Sun, 10 Sep 2017 07:51:24 +0000
Subject: [PATCH 70/86] gnu: Add font-google-noto-sans-syloti-nagri.

* gnu/packages/fonts.scm (font-google-noto-sans-syloti-nagri): 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 5f82df7bc..1d8d19e1b 100644
--- a/gnu/packages/fonts.scm
+++ b/gnu/packages/fonts.scm
@@ -2085,6 +2085,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-syloti-nagri
+  (package
+    (name "font-google-noto-sans-syloti-nagri")
+    (version "20170403")
+    (source
+     (origin
+       (method url-fetch/zipbomb)
+       (uri (string-append "https://noto-website.storage.googleapis.com/pkgs/"
+                           "NotoSansSylotiNagri-unhinted.zip"))
+       (file-name (string-append name "-" version ".zip"))
+       (sha256
+        (base32
+         "0f9076s7hqqhwn67pbwzfwlqwds7sd8d21wgppz7gxgz47pmy8a2"))))
+    (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


[-- Attachment #1.72: 0071-gnu-Add-font-google-noto-sans-symbols.patch --]
[-- Type: text/plain, Size: 1682 bytes --]

From 3631f4ddbc39b6f4e981b5e5e7a3e598e43c20f9 Mon Sep 17 00:00:00 2001
From: ng0 <ng0@infotropique.org>
Date: Sun, 10 Sep 2017 07:53:09 +0000
Subject: [PATCH 71/86] gnu: Add font-google-noto-sans-symbols.

* gnu/packages/fonts.scm (font-google-noto-sans-symbols): 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 1d8d19e1b..c08d50765 100644
--- a/gnu/packages/fonts.scm
+++ b/gnu/packages/fonts.scm
@@ -2106,6 +2106,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-symbols
+  (package
+    (name "font-google-noto-sans-symbols")
+    (version "20170403")
+    (source
+     (origin
+       (method url-fetch/zipbomb)
+       (uri (string-append "https://noto-website.storage.googleapis.com/pkgs/"
+                           "NotoSansSymbols-unhinted.zip"))
+       (file-name (string-append name "-" version ".zip"))
+       (sha256
+        (base32
+         "0iyb267jnl7diawszaihk6iqgcls3pjkrgkg36ixf622m8sainan"))))
+    (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


[-- Attachment #1.73: 0072-gnu-Add-font-google-noto-sans-syriac-eastern.patch --]
[-- Type: text/plain, Size: 1716 bytes --]

From b7d49da103598f1b2434fb19d469534ab3dad051 Mon Sep 17 00:00:00 2001
From: ng0 <ng0@infotropique.org>
Date: Sun, 10 Sep 2017 07:55:34 +0000
Subject: [PATCH 72/86] gnu: Add font-google-noto-sans-syriac-eastern.

* gnu/packages/fonts.scm (font-google-noto-sans-syriac-eastern): 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 c08d50765..c9ef6da99 100644
--- a/gnu/packages/fonts.scm
+++ b/gnu/packages/fonts.scm
@@ -2127,6 +2127,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-syriac-eastern
+  (package
+    (name "font-google-noto-sans-syriac-eastern")
+    (version "20170403")
+    (source
+     (origin
+       (method url-fetch/zipbomb)
+       (uri (string-append "https://noto-website.storage.googleapis.com/pkgs/"
+                           "NotoSansSyriacEastern-unhinted.zip"))
+       (file-name (string-append name "-" version ".zip"))
+       (sha256
+        (base32
+         "13pc9171h7hb27ww44sakz0iffa1rsw2haclqdpmki5sbpw77l96"))))
+    (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


[-- Attachment #1.74: 0073-gnu-Add-font-google-noto-sans-syriac-estrangela.patch --]
[-- Type: text/plain, Size: 1731 bytes --]

From 2fb05dfbd6f242f3b7e82996ec928724073cfd2e Mon Sep 17 00:00:00 2001
From: ng0 <ng0@infotropique.org>
Date: Sun, 10 Sep 2017 07:57:01 +0000
Subject: [PATCH 73/86] gnu: Add font-google-noto-sans-syriac-estrangela.

* gnu/packages/fonts.scm (font-google-noto-sans-syriac-estrangela): 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 c9ef6da99..2263725f0 100644
--- a/gnu/packages/fonts.scm
+++ b/gnu/packages/fonts.scm
@@ -2148,6 +2148,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-syriac-estrangela
+  (package
+    (name "font-google-noto-sans-syriac-estrangela")
+    (version "20170403")
+    (source
+     (origin
+       (method url-fetch/zipbomb)
+       (uri (string-append "https://noto-website.storage.googleapis.com/pkgs/"
+                           "NotoSansSyriacEstrangela-unhinted.zip"))
+       (file-name (string-append name "-" version ".zip"))
+       (sha256
+        (base32
+         "1jxx0jkbwzvccskkhs26clhbbqzyl4jnv8i6h7hqb880kgqllxnw"))))
+    (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


[-- Attachment #1.75: 0074-gnu-Add-font-google-noto-sans-syriac-western.patch --]
[-- Type: text/plain, Size: 1716 bytes --]

From 8658770263ff874176437d363567586b7ac39b85 Mon Sep 17 00:00:00 2001
From: ng0 <ng0@infotropique.org>
Date: Sun, 10 Sep 2017 07:58:41 +0000
Subject: [PATCH 74/86] gnu: Add font-google-noto-sans-syriac-western.

* gnu/packages/fonts.scm (font-google-noto-sans-syriac-western): 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 2263725f0..40aeb4a7e 100644
--- a/gnu/packages/fonts.scm
+++ b/gnu/packages/fonts.scm
@@ -2169,6 +2169,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-syriac-western
+  (package
+    (name "font-google-noto-sans-syriac-western")
+    (version "20170403")
+    (source
+     (origin
+       (method url-fetch/zipbomb)
+       (uri (string-append "https://noto-website.storage.googleapis.com/pkgs/"
+                           "NotoSansSyriacWestern-unhinted.zip"))
+       (file-name (string-append name "-" version ".zip"))
+       (sha256
+        (base32
+         "132sd7ijb4nr3wyaq1b3q8dq1ipmm4jh75i2jdqckmgm18nq4r59"))))
+    (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


[-- Attachment #1.76: 0075-gnu-Add-font-google-noto-sans-tai-tham.patch --]
[-- Type: text/plain, Size: 1686 bytes --]

From 043681de9df76aa964a7cf94bb8528bff5282c2c Mon Sep 17 00:00:00 2001
From: ng0 <ng0@infotropique.org>
Date: Sun, 10 Sep 2017 08:01:35 +0000
Subject: [PATCH 75/86] gnu: Add font-google-noto-sans-tai-tham.

* gnu/packages/fonts.scm (font-google-noto-sans-tai-tham): 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 40aeb4a7e..e66e7af3e 100644
--- a/gnu/packages/fonts.scm
+++ b/gnu/packages/fonts.scm
@@ -2190,6 +2190,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-tai-tham
+  (package
+    (name "font-google-noto-sans-tai-tham")
+    (version "20170403")
+    (source
+     (origin
+       (method url-fetch/zipbomb)
+       (uri (string-append "https://noto-website.storage.googleapis.com/pkgs/"
+                           "NotoSansTaiTham-unhinted.zip"))
+       (file-name (string-append name "-" version ".zip"))
+       (sha256
+        (base32
+         "1pmhznjqjy8kk2minmdismp7m5j4vn86g6k304pkh8vsgz4672zr"))))
+    (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


[-- Attachment #1.77: 0076-gnu-Add-font-google-noto-sans-thaana.patch --]
[-- Type: text/plain, Size: 1675 bytes --]

From 6e3b47c7d4d5276ce6726bacee1efa78e2514502 Mon Sep 17 00:00:00 2001
From: ng0 <ng0@infotropique.org>
Date: Sun, 10 Sep 2017 08:03:51 +0000
Subject: [PATCH 76/86] gnu: Add font-google-noto-sans-thaana.

* gnu/packages/fonts.scm (font-google-noto-sans-thaana): 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 e66e7af3e..99e331bff 100644
--- a/gnu/packages/fonts.scm
+++ b/gnu/packages/fonts.scm
@@ -2211,6 +2211,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-thaana
+  (package
+    (name "font-google-noto-sans-thaana")
+    (version "20170403")
+    (source
+     (origin
+       (method url-fetch/zipbomb)
+       (uri (string-append "https://noto-website.storage.googleapis.com/pkgs/"
+                           "NotoSansThaana-hinted.zip"))
+       (file-name (string-append name "-" version ".zip"))
+       (sha256
+        (base32
+         "1fdpjj060y4cl1hz2pbydn9pv69ih0dp8g6255fiixxgdabag75d"))))
+    (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


[-- Attachment #1.78: 0077-gnu-Add-font-google-noto-sans-ugaritic.patch --]
[-- Type: text/plain, Size: 1687 bytes --]

From ddc67f5eee857a18f7b0ae20f651f11dc084093c Mon Sep 17 00:00:00 2001
From: ng0 <ng0@infotropique.org>
Date: Sun, 10 Sep 2017 08:06:01 +0000
Subject: [PATCH 77/86] gnu: Add font-google-noto-sans-ugaritic.

* gnu/packages/fonts.scm (font-google-noto-sans-ugaritic): 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 99e331bff..bd43e132e 100644
--- a/gnu/packages/fonts.scm
+++ b/gnu/packages/fonts.scm
@@ -2232,6 +2232,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-ugaritic
+  (package
+    (name "font-google-noto-sans-ugaritic")
+    (version "20170403")
+    (source
+     (origin
+       (method url-fetch/zipbomb)
+       (uri (string-append "https://noto-website.storage.googleapis.com/pkgs/"
+                           "NotoSansUgaritic-unhinted.zip"))
+       (file-name (string-append name "-" version ".zip"))
+       (sha256
+        (base32
+         "0c1q1kzpzsc01d0fjap8ywzxi7mypi14vfdfci4lbv9hi9jjyylb"))))
+    (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


[-- Attachment #1.79: 0078-gnu-Add-font-google-noto-serif-bengali.patch --]
[-- Type: text/plain, Size: 1685 bytes --]

From 94af7df4c0d145cc80ce8edd0db09644b88c4b0c Mon Sep 17 00:00:00 2001
From: ng0 <ng0@infotropique.org>
Date: Sun, 10 Sep 2017 08:08:23 +0000
Subject: [PATCH 78/86] gnu: Add font-google-noto-serif-bengali.

* gnu/packages/fonts.scm (font-google-noto-serif-bengali): 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 bd43e132e..9865422c2 100644
--- a/gnu/packages/fonts.scm
+++ b/gnu/packages/fonts.scm
@@ -2253,6 +2253,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-serif-bengali
+  (package
+    (name "font-google-noto-serif-bengali")
+    (version "20170403")
+    (source
+     (origin
+       (method url-fetch/zipbomb)
+       (uri (string-append "https://noto-website.storage.googleapis.com/pkgs/"
+                           "NotoSerifBengali-hinted.zip"))
+       (file-name (string-append name "-" version ".zip"))
+       (sha256
+        (base32
+         "0nkmwr77wcc1z22fzznkkf5mm2gh1gyqw0z2jmnwnwgm9n22bjgr"))))
+    (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


[-- Attachment #1.80: 0079-gnu-Add-font-google-noto-serif-cjk-tc.patch --]
[-- Type: text/plain, Size: 1679 bytes --]

From 1ae0616e7f89fb7c4891c1d166163a2bba32800a Mon Sep 17 00:00:00 2001
From: ng0 <ng0@infotropique.org>
Date: Sun, 10 Sep 2017 08:10:08 +0000
Subject: [PATCH 79/86] gnu: Add font-google-noto-serif-cjk-tc.

* gnu/packages/fonts.scm (font-google-noto-serif-cjk-tc): 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 9865422c2..8c1773a76 100644
--- a/gnu/packages/fonts.scm
+++ b/gnu/packages/fonts.scm
@@ -2274,6 +2274,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-serif-cjk-tc
+  (package
+    (name "font-google-noto-serif-cjk-tc")
+    (version "20170403")
+    (source
+     (origin
+       (method url-fetch/zipbomb)
+       (uri (string-append "https://noto-website.storage.googleapis.com/pkgs/"
+                           "NotoSerifCJKtc-hinted.zip"))
+       (file-name (string-append name "-" version ".zip"))
+       (sha256
+        (base32
+         "02r77wjp1dk6vb4zb05xi0z7v9b9ra086idj1p7zdi7wlzadrfaz"))))
+    (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


[-- Attachment #1.81: 0080-gnu-Add-font-google-noto-serif-devanagari.patch --]
[-- Type: text/plain, Size: 1700 bytes --]

From 4a11543160762777ea769485b06bb3133de6ec64 Mon Sep 17 00:00:00 2001
From: ng0 <ng0@infotropique.org>
Date: Sun, 10 Sep 2017 08:11:46 +0000
Subject: [PATCH 80/86] gnu: Add font-google-noto-serif-devanagari.

* gnu/packages/fonts.scm (font-google-noto-serif-devanagari): 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 8c1773a76..f5874d8c5 100644
--- a/gnu/packages/fonts.scm
+++ b/gnu/packages/fonts.scm
@@ -2295,6 +2295,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-serif-devanagari
+  (package
+    (name "font-google-noto-serif-devanagari")
+    (version "20170403")
+    (source
+     (origin
+       (method url-fetch/zipbomb)
+       (uri (string-append "https://noto-website.storage.googleapis.com/pkgs/"
+                           "NotoSerifDevanagari-hinted.zip"))
+       (file-name (string-append name "-" version ".zip"))
+       (sha256
+        (base32
+         "1c9mpp27f5kmflqcrv0rjaq3fc0cnsa8zf3wxg25cdmhmgywzk89"))))
+    (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


[-- Attachment #1.82: 0081-gnu-Add-font-google-noto-serif-georgian.patch --]
[-- Type: text/plain, Size: 1690 bytes --]

From 4aec3f666e7f69bfcfde375f24d4f3c39d8c6694 Mon Sep 17 00:00:00 2001
From: ng0 <ng0@infotropique.org>
Date: Sun, 10 Sep 2017 08:13:26 +0000
Subject: [PATCH 81/86] gnu: Add font-google-noto-serif-georgian.

* gnu/packages/fonts.scm (font-google-noto-serif-georgian): 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 f5874d8c5..e4199c568 100644
--- a/gnu/packages/fonts.scm
+++ b/gnu/packages/fonts.scm
@@ -2316,6 +2316,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-serif-georgian
+  (package
+    (name "font-google-noto-serif-georgian")
+    (version "20170403")
+    (source
+     (origin
+       (method url-fetch/zipbomb)
+       (uri (string-append "https://noto-website.storage.googleapis.com/pkgs/"
+                           "NotoSerifGeorgian-hinted.zip"))
+       (file-name (string-append name "-" version ".zip"))
+       (sha256
+        (base32
+         "0zp216d28vrxgmcf3p0l806gqq4x5dqmj1zni0jb4rar63ckf3iv"))))
+    (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


[-- Attachment #1.83: 0082-gnu-Add-font-google-noto-serif-gujarati.patch --]
[-- Type: text/plain, Size: 1690 bytes --]

From 602bf46f1dd12a9f6d257fe2103642ffa8849e70 Mon Sep 17 00:00:00 2001
From: ng0 <ng0@infotropique.org>
Date: Sun, 10 Sep 2017 08:15:06 +0000
Subject: [PATCH 82/86] gnu: Add font-google-noto-serif-gujarati.

* gnu/packages/fonts.scm (font-google-noto-serif-gujarati): 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 e4199c568..caee0e5f1 100644
--- a/gnu/packages/fonts.scm
+++ b/gnu/packages/fonts.scm
@@ -2337,6 +2337,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-serif-gujarati
+  (package
+    (name "font-google-noto-serif-gujarati")
+    (version "20170403")
+    (source
+     (origin
+       (method url-fetch/zipbomb)
+       (uri (string-append "https://noto-website.storage.googleapis.com/pkgs/"
+                           "NotoSerifGujarati-hinted.zip"))
+       (file-name (string-append name "-" version ".zip"))
+       (sha256
+        (base32
+         "176nhv6bjsy597g3jdqb8naakdbz7gcsy0npahqvqxnn851awy1y"))))
+    (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


[-- Attachment #1.84: 0083-gnu-Add-font-google-noto-serif-lao.patch --]
[-- Type: text/plain, Size: 1665 bytes --]

From f9cb6892f2bc2858934d47a440809d3ee3356c2f Mon Sep 17 00:00:00 2001
From: ng0 <ng0@infotropique.org>
Date: Sun, 10 Sep 2017 08:16:31 +0000
Subject: [PATCH 83/86] gnu: Add font-google-noto-serif-lao.

* gnu/packages/fonts.scm (font-google-noto-serif-lao): 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 caee0e5f1..370fee305 100644
--- a/gnu/packages/fonts.scm
+++ b/gnu/packages/fonts.scm
@@ -2358,6 +2358,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-serif-lao
+  (package
+    (name "font-google-noto-serif-lao")
+    (version "20170403")
+    (source
+     (origin
+       (method url-fetch/zipbomb)
+       (uri (string-append "https://noto-website.storage.googleapis.com/pkgs/"
+                           "NotoSerifLao-hinted.zip"))
+       (file-name (string-append name "-" version ".zip"))
+       (sha256
+        (base32
+         "1pv27267yn54254bgwa8f2vvycjvj43yk3rfwas1cdbdlldh6fka"))))
+    (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


[-- Attachment #1.85: 0084-gnu-Add-font-google-noto-serif-tamil.patch --]
[-- Type: text/plain, Size: 1675 bytes --]

From e150480bca407eef18816ddb5989912d6a808885 Mon Sep 17 00:00:00 2001
From: ng0 <ng0@infotropique.org>
Date: Sun, 10 Sep 2017 08:18:25 +0000
Subject: [PATCH 84/86] gnu: Add font-google-noto-serif-tamil.

* gnu/packages/fonts.scm (font-google-noto-serif-tamil): 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 370fee305..bd1531aad 100644
--- a/gnu/packages/fonts.scm
+++ b/gnu/packages/fonts.scm
@@ -2379,6 +2379,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-serif-tamil
+  (package
+    (name "font-google-noto-serif-tamil")
+    (version "20170403")
+    (source
+     (origin
+       (method url-fetch/zipbomb)
+       (uri (string-append "https://noto-website.storage.googleapis.com/pkgs/"
+                           "NotoSerifTamil-hinted.zip"))
+       (file-name (string-append name "-" version ".zip"))
+       (sha256
+        (base32
+         "131i45d0d6lfkyz7cqk7jd618hkn3laqri6cf3zmniqrwrkv7g20"))))
+    (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


[-- Attachment #1.86: 0085-gnu-Add-font-google-noto-serif-telugu.patch --]
[-- Type: text/plain, Size: 1680 bytes --]

From 170f5164d349007608ffb643d2cbbe0d993821ab Mon Sep 17 00:00:00 2001
From: ng0 <ng0@infotropique.org>
Date: Sun, 10 Sep 2017 08:19:58 +0000
Subject: [PATCH 85/86] gnu: Add font-google-noto-serif-telugu.

* gnu/packages/fonts.scm (font-google-noto-serif-telugu): 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 bd1531aad..61e1c2cd4 100644
--- a/gnu/packages/fonts.scm
+++ b/gnu/packages/fonts.scm
@@ -2400,6 +2400,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-serif-telugu
+  (package
+    (name "font-google-noto-serif-telugu")
+    (version "20170403")
+    (source
+     (origin
+       (method url-fetch/zipbomb)
+       (uri (string-append "https://noto-website.storage.googleapis.com/pkgs/"
+                           "NotoSerifTelugu-hinted.zip"))
+       (file-name (string-append name "-" version ".zip"))
+       (sha256
+        (base32
+         "0cylddx4kgcy2xz910yfcxjcgy9rx0smizvc4gmnyx857j520pv9"))))
+    (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


[-- Attachment #1.87: 0086-gnu-Add-font-google-noto-serif-thai.patch --]
[-- Type: text/plain, Size: 1670 bytes --]

From 0a1ace00f3e414bf399bd680bc3e6839b67ed7db Mon Sep 17 00:00:00 2001
From: ng0 <ng0@infotropique.org>
Date: Sun, 10 Sep 2017 08:21:15 +0000
Subject: [PATCH 86/86] gnu: Add font-google-noto-serif-thai.

* gnu/packages/fonts.scm (font-google-noto-serif-thai): 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 61e1c2cd4..91e8d2280 100644
--- a/gnu/packages/fonts.scm
+++ b/gnu/packages/fonts.scm
@@ -2421,6 +2421,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-serif-thai
+  (package
+    (name "font-google-noto-serif-thai")
+    (version "20170403")
+    (source
+     (origin
+       (method url-fetch/zipbomb)
+       (uri (string-append "https://noto-website.storage.googleapis.com/pkgs/"
+                           "NotoSerifThai-hinted.zip"))
+       (file-name (string-append name "-" version ".zip"))
+       (sha256
+        (base32
+         "1r2f89m9rdxmdq8919cg84l9xyfji2klhzgxz8m3w7s5zdk739nk"))))
+    (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


[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

^ permalink raw reply related	[flat|nested] 13+ messages in thread

end of thread, other threads:[~2022-01-17 16:14 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-09-10  9:06 [bug#28404] The complete Google Noto Fonts ng0
2017-09-11  8:27 ` Ludovic Courtès
2017-09-11 10:57   ` ng0
2017-09-11 11:55     ` Ludovic Courtès
2017-09-11 12:21     ` ng0
2017-09-12 12:51       ` Ludovic Courtès
2017-09-12 14:51         ` ng0
2017-09-12 15:22           ` Ludovic Courtès
2017-09-25 12:25             ` ng0
2022-01-13 15:23               ` zimoun
2022-01-17 13:16                 ` Ludovic Courtès
2022-01-17 14:23                   ` zimoun
2022-01-17 16:07                     ` Ludovic Courtès

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.