~ruther/guix-local

817eb4c0fe718151b590da1d8f2675523dc75587 — Kurome 10 months ago c16cb2c
gnu: font-google-roboto: Update to 3.011.

* gnu/packages/fonts.scm (font-google-roboto): Update to 3.011.
[source] <uri>: New repository.
[arguments] <#:phases>: Add 'chdir.
[homepage]: New repository.
[description]: Format.
[license]: Change to OFL.

Change-Id: Iefa37a38ae51f6f000cdf383f8aed436e08a3eaf
Signed-off-by: 宋文武 <iyzsong@member.fsf.org>
1 files changed, 17 insertions(+), 9 deletions(-)

M gnu/packages/fonts.scm
M gnu/packages/fonts.scm => gnu/packages/fonts.scm +17 -9
@@ 1562,24 1562,32 @@ fonts.")
(define-public font-google-roboto
  (package
    (name "font-google-roboto")
    (version "2.136")
    (version "3.011")
    (source
     (origin
       (method url-fetch)
       (uri (string-append "https://github.com/google/roboto/releases/download/"
                           "v" version "/roboto-hinted.zip"))
       (uri (string-append
             "https://github.com/googlefonts/roboto-3-classic/releases/download/v"
             version "/Roboto_v" version ".zip"))
       (file-name (string-append name "-" version ".zip"))
       (sha256
        (base32
         "0spscx08fad7i8qs7icns96iwcapniq8lwwqqvbf7bamvs8qfln4"))))
        (base32 "03km9r4cgbbjparmzvlkr59a3r6j5cwmnf4s17qr7wkdf0qyx7wq"))))
    (build-system font-build-system)
    (home-page "https://github.com/google/roboto")
    (arguments
     (list
      #:phases
      #~(modify-phases %standard-phases
          ;; Install only needed fonts.
          (add-before 'install 'chdir
            (lambda _
              (chdir "../hinted/static"))))))
    (home-page "https://github.com/googlefonts/roboto-3-classic")
    (synopsis "The Roboto family of fonts")
    (description
     "Roboto is Google’s signature family of fonts, the default font on Android
and Chrome OS, and the recommended font for the
visual language \"Material Design\".")
    (license license:asl2.0)))
and Chrome OS, and the recommended font for the visual language \"Material
Design\".")
    (license license:silofl1.1)))

(define-public font-google-roboto-mono
  (package