gnu: godot: Don't use unstable tarball.
* gnu/packages/game-development.scm (godot)[source]: Use GIT-FETCH.
This commit is contained in:
parent
a1205efe11
commit
39f516cb83
|
@ -1064,14 +1064,14 @@ games.")
|
||||||
(name "godot")
|
(name "godot")
|
||||||
(version "3.0.4")
|
(version "3.0.4")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method git-fetch)
|
||||||
(uri
|
(uri (git-reference
|
||||||
(string-append "https://github.com/godotengine/godot/archive/"
|
(url "https://github.com/godotengine/godot")
|
||||||
version "-stable.tar.gz"))
|
(commit (string-append version "-stable"))))
|
||||||
(file-name (string-append name "-" version ".tar.gz"))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0khnj9rf24g56imwl78a89f2agxi6arbh804zrv54k79rm71dlpb"))
|
"0i4ssfb6igga9zwvsmahrnasx9cyqrsd6mlmssjgc482fy9q2kz4"))
|
||||||
(modules '((guix build utils)))
|
(modules '((guix build utils)))
|
||||||
(snippet
|
(snippet
|
||||||
'(begin
|
'(begin
|
||||||
|
|
Loading…
Reference in New Issue