~ruther/guix-local

b502e5e29f3e2070fa72317d9912ac3b37fa0b28 — Foster Hangdaan 5 months ago 14ac39a
gnu: Add font-hubot-sans.

* gnu/packages/fonts.scm (font-hubot-sans): New variable.

Closes: guix/guix#4407
Change-Id: I43e088555cc527a2a4f91783bc8efb7fe450a812
Signed-off-by: 宋文武 <iyzsong@member.fsf.org>
1 files changed, 24 insertions(+), 0 deletions(-)

M gnu/packages/fonts.scm
M gnu/packages/fonts.scm => gnu/packages/fonts.scm +24 -0
@@ 5015,3 5015,27 @@ in typical scalable font formats.")
for code and text-editing in particular, and whenever having a fixed-pitch font
is necessary, such as when composing tabular data using text.")
    (license license:silofl1.1)))

(define-public font-hubot-sans
  (package
    (name "font-hubot-sans")
    (version "1.0.1")
    (source
     (origin
       (method git-fetch)
       (uri (git-reference
             (url "https://github.com/github/hubot-sans")
             (commit (string-append "v" version))))
       (file-name (git-file-name name version))
       (sha256
        (base32
         "147srdhc0h9165f03kwlpsvm72qrsv0br31lspg9fy4jdjb7dxkp"))))
    (build-system font-build-system)
    (outputs '("out" "ttf" "woff"))
    (home-page "https://github.com/mona-sans")
    (synopsis "Variable font from Github")
    (description
     "Hubot Sans is designed with more geometric accents to lend a
technical and idiosyncratic feel—perfect for headers and pull-quotes.  Made to
work well together with Mona Sans.")
    (license license:silofl1.1)))