gnu: mod-wsgi: Don't use unstable tarball.
* gnu/packages/web.scm (mod-wsgi)[source]: Use GIT-FETCH and GIT-FILE-NAME.
This commit is contained in:
parent
95c910f499
commit
bff44abb14
|
@ -164,17 +164,17 @@ and its related documentation.")
|
||||||
(name "mod-wsgi")
|
(name "mod-wsgi")
|
||||||
(version "4.5.22")
|
(version "4.5.22")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method git-fetch)
|
||||||
(uri (string-append
|
(uri (git-reference
|
||||||
"https://github.com/GrahamDumpleton/mod_wsgi/archive/"
|
(url "https://github.com/GrahamDumpleton/mod_wsgi.git")
|
||||||
version ".tar.gz"))
|
(commit version)))
|
||||||
(file-name (string-append name "-" version ".tar.gz"))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0n1yhmrfp8mjbsngmyjl937c6rc0069p6wdi1lknrbn1q42hzw6q"))))
|
"1q90xw2cbhka5gcd6yc69iir73x4gm7fm75qpkins2ryfl6w1q3f"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
'(#:tests? #f ;; TODO: Can't figure out if there are tests
|
'(#:tests? #f ; TODO: can't figure out if there are tests
|
||||||
#:make-flags (list
|
#:make-flags (list
|
||||||
(string-append "DESTDIR="
|
(string-append "DESTDIR="
|
||||||
(assoc-ref %outputs "out"))
|
(assoc-ref %outputs "out"))
|
||||||
|
|
Loading…
Reference in New Issue