mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-19 14:07:01 +01:00
gnu: openmw: Don't use unstable tarball.
* gnu/packages/game-development.scm (openmw)[source]: Download using git-fetch.
This commit is contained in:
parent
9b03299544
commit
aa246eaa6b
1 changed files with 6 additions and 5 deletions
|
@ -1492,13 +1492,14 @@ (define-public openmw
|
||||||
(version "0.46.0")
|
(version "0.46.0")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method git-fetch)
|
||||||
(uri
|
(uri (git-reference
|
||||||
(string-append "https://github.com/OpenMW/openmw/archive/"
|
(url "https://github.com/OpenMW/openmw")
|
||||||
"openmw-" version ".tar.gz"))
|
(commit (string-append "openmw-" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0n7x39kwhwmi6ly9hd7yc6dhlrmmdmx30ahc46kmlzzn2n7mm8q7"))))
|
"0rm32zsmxvr6b0jjihfj543skhicbw5kg6shjx312clhlm035w2x"))))
|
||||||
(build-system cmake-build-system)
|
(build-system cmake-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:tests? #f ; No test target
|
`(#:tests? #f ; No test target
|
||||||
|
|
Loading…
Reference in a new issue