gnu: grfcodec: Fix source URL.
* gnu/packages/game-development.scm (grfcodec)[source]: Use HTTPS for URL. Re-indent package.
This commit is contained in:
parent
c0f297e85f
commit
127c7fba1a
1 changed files with 30 additions and 30 deletions
|
@ -191,21 +191,21 @@ DeuTex has functions such as merging wads, etc.")
|
||||||
(package
|
(package
|
||||||
(name "grfcodec")
|
(name "grfcodec")
|
||||||
(version "6.0.6")
|
(version "6.0.6")
|
||||||
(source (origin
|
(source
|
||||||
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "http://binaries.openttd.org/extra/"
|
(uri (string-append "https://binaries.openttd.org/extra/"
|
||||||
name "/" version "/" name "-" version
|
name "/" version "/" name "-" version
|
||||||
"-source.tar.xz"))
|
"-source.tar.xz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32 "08admgnpqcsifpicbm56apgv360fxapqpbbsp10qyk8i22w1ivsk"))))
|
||||||
"08admgnpqcsifpicbm56apgv360fxapqpbbsp10qyk8i22w1ivsk"))))
|
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
'(#:tests? #f ; no check target
|
'(#:tests? #f ;no check target
|
||||||
#:phases
|
#:phases
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
(delete 'configure) ; no configure script
|
(delete 'configure) ;no configure script
|
||||||
(replace 'install ; no install target
|
(replace 'install ;no install target
|
||||||
(lambda* (#:key outputs #:allow-other-keys)
|
(lambda* (#:key outputs #:allow-other-keys)
|
||||||
(let* ((out (assoc-ref outputs "out"))
|
(let* ((out (assoc-ref outputs "out"))
|
||||||
(bin (string-append out "/bin"))
|
(bin (string-append out "/bin"))
|
||||||
|
|
Reference in a new issue