mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 05:18:07 -05:00
gnu: font-google-material-design-icons: Don't use unstable tarball.
* gnu/packages/fonts.scm (font-google-material-design-icons)[source]: Download using git-fetch.
This commit is contained in:
parent
1f07550c86
commit
1e90e4b0d9
1 changed files with 6 additions and 6 deletions
|
@ -1142,14 +1142,14 @@ (define-public font-google-material-design-icons
|
|||
(name "font-google-material-design-icons")
|
||||
(version "3.0.1")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (string-append
|
||||
"https://github.com/google/material-design-icons/archive/"
|
||||
version ".tar.gz"))
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/google/material-design-icons.git")
|
||||
(commit version)))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"018i3za9r6kf6svci33z09lc5pr5yz4164m8gzzwjzzqcrng0p5j"))
|
||||
(file-name (string-append name "-" version ".tar.gz"))))
|
||||
"17q5brcqyyc8gbjdgpv38p89s60cwxjlwy2ljnrvas5cj0s62np0"))))
|
||||
(build-system font-build-system)
|
||||
(home-page "http://google.github.io/material-design-icons")
|
||||
(synopsis "Icon font of Google Material Design icons")
|
||||
|
|
Loading…
Reference in a new issue