mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 05:18:07 -05:00
gnu: font-fira-sans: Don't use unstable tarball.
* gnu/packages/fonts.scm (font-fira-sans)[source]: Download using git-fetch.
This commit is contained in:
parent
8f4dccf75d
commit
c2426dbddc
1 changed files with 6 additions and 5 deletions
|
@ -922,13 +922,14 @@ (define-public font-fira-sans
|
|||
(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"))
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/mozilla/Fira.git")
|
||||
(commit version)))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"1r6zdnqqp4bgq5nmgqbj0vvj7x1h9w912851ggbl9wc7fdjnjqnq"))))
|
||||
"116j26gdj5g1r124b4669372f7490vfjqw7apiwp2ggl0am5xd0w"))))
|
||||
(build-system font-build-system)
|
||||
(home-page "https://mozilla.github.io/Fira/")
|
||||
(synopsis "Mozilla's Fira Sans Font")
|
||||
|
|
Loading…
Reference in a new issue