mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: Add font-fira-go.
* gnu/packages/fonts.scm (font-fira-go): New variable. Signed-off-by: Leo Famulari <leo@famulari.name>
This commit is contained in:
parent
5e652e94a9
commit
796c9b0bf5
1 changed files with 22 additions and 0 deletions
|
@ -38,6 +38,7 @@
|
|||
;;; Copyright © 2020 Simen Endsjø <simendsjo@gmail.com>
|
||||
;;; Copyright © 2020 Tim Van den Langenbergh <tmt_vdl@gmx.com>
|
||||
;;; Copyright © 2020 Nicolò Balzarotti <nicolo@nixo.xyz>
|
||||
;;; Copyright © 2021 Antoine Côté <antoine.cote@posteo.net>
|
||||
;;;
|
||||
;;; This file is part of GNU Guix.
|
||||
;;;
|
||||
|
@ -1031,6 +1032,27 @@ (define-public font-fira-sans
|
|||
(description "This is the typeface used by Mozilla in Firefox OS.")
|
||||
(license license:silofl1.1)))
|
||||
|
||||
(define-public font-fira-go
|
||||
(package
|
||||
(name "font-fira-go")
|
||||
(version "1.000")
|
||||
(source (origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/bBoxType/FiraGO")
|
||||
(commit version)))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"10rcfg1fijv00yxv5n9l3lm0axhafa1irkg42zpmasd70flgg655"))))
|
||||
(build-system font-build-system)
|
||||
(home-page "https://github.com/bBoxType/FiraGO")
|
||||
(synopsis "Multilingual extension of the Fira Sans font family")
|
||||
(description "FiraGO is a multilingual extension of the Fira Sans font
|
||||
family. Based on the Fira Sans 4.3 glyph set, FiraGO adds support for the
|
||||
Arabic, Devanagari, Georgian, Hebrew and Thai scripts.")
|
||||
(license license:silofl1.1)))
|
||||
|
||||
(define-public font-fira-code
|
||||
(package
|
||||
(name "font-fira-code")
|
||||
|
|
Loading…
Reference in a new issue