diff options
author | ng0 <ng0@n0.is> | 2017-08-04 19:13:51 +0000 |
---|---|---|
committer | Leo Famulari <leo@famulari.name> | 2017-11-28 14:26:20 -0500 |
commit | 0ee27df06be40ec63e393f1120ecb87dc825df17 (patch) | |
tree | 9d693fb20e2efa0fe0898d222a81e790463755a1 | |
parent | 4eb4742060b378071158bdd8794370a12ab04701 (diff) | |
download | guix-0ee27df06be40ec63e393f1120ecb87dc825df17.tar guix-0ee27df06be40ec63e393f1120ecb87dc825df17.tar.gz |
gnu: add font-fira-sans.
* gnu/packages/fonts.scm (font-fira-sans): New variable.
Signed-off-by: Leo Famulari <leo@famulari.name>
-rw-r--r-- | gnu/packages/fonts.scm | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/gnu/packages/fonts.scm b/gnu/packages/fonts.scm index 092b70e587..0f123c3ab1 100644 --- a/gnu/packages/fonts.scm +++ b/gnu/packages/fonts.scm @@ -870,6 +870,24 @@ designed to work well in user interface environments.") (description "This is the typeface used by Mozilla in Firefox OS.") (license license:silofl1.1))) +(define-public font-fira-sans + (package + (name "font-fira-sans") + (version "4.202") + (source (origin + (method url-fetch) + (uri (string-append "https://github.com/mozilla/Fira/archive/" + version ".tar.gz")) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 + "1r6zdnqqp4bgq5nmgqbj0vvj7x1h9w912851ggbl9wc7fdjnjqnq")))) + (build-system font-build-system) + (home-page "http://mozilla.github.io/Fira/") + (synopsis "Mozilla's Fira Sans Font") + (description "This is the typeface used by Mozilla in Firefox OS.") + (license license:silofl1.1))) + (define-public font-awesome (package (name "font-awesome") |