mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: ogre: Don't use unstable tarball.
* gnu/packages/graphics.scm (ogre)[source]: Download using git-fetch.
This commit is contained in:
parent
d5640c587f
commit
1aa662b309
1 changed files with 6 additions and 5 deletions
|
@ -354,13 +354,14 @@ (define-public ogre
|
||||||
(version "1.10.11")
|
(version "1.10.11")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method git-fetch)
|
||||||
(uri (string-append "https://github.com/OGRECave/" name
|
(uri (git-reference
|
||||||
"/archive/v" version ".tar.gz"))
|
(url "https://github.com/OGRECave/ogre.git")
|
||||||
|
(commit (string-append "v" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"13bdh9v4026qf8w8rbfln2rmwf0rby1a8fz55zpdvpy105i6cbpz"))
|
"072rzw9mxymbiypgkrbkk9h10rgly6gczik4dlmssk6xkpqckaqr"))))
|
||||||
(file-name (string-append name "-" version ".tar.gz"))))
|
|
||||||
(build-system cmake-build-system)
|
(build-system cmake-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
'(#:phases
|
'(#:phases
|
||||||
|
|
Loading…
Reference in a new issue