gnu: moka-icon-theme: Don't use unstable tarball.

* gnu/packages/gnome.scm (moka-icon-theme)[source]: Use GIT-FETCH and
GIT-FILE-NAME, and follow upstream redirection.
This commit is contained in:
Tobias Geerinckx-Rice 2019-11-29 14:25:41 +01:00
parent 757e402792
commit 8c3f2170c4
No known key found for this signature in database
GPG key ID: D889B0F018C5493C

View file

@ -7203,15 +7203,15 @@ (define-public moka-icon-theme
(inherit faba-icon-theme)
(name "moka-icon-theme")
(version "5.4.0")
(source (origin
(method url-fetch)
(uri (string-append "https://github.com/moka-project"
"/moka-icon-theme/archive/v"
version ".tar.gz"))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32
"1nbwdjj268hxv9lfagd9aylily9f0hhallp841v0i3imljp84bmk"))))
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/snwh/moka-icon-theme.git")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "015l02im4mha5z91dbchxf6xkp66d346bg3xskwg0rh3lglhjsrd"))))
(propagated-inputs
;; Moka is based on Faba by using it as a fallback icon set instead of
;; bundling it, so we need to add it as a propagated input.