mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 05:48:07 -05:00
gnu: geomyidae: Don't use unstable tarball.
* gnu/packages/web.scm (geomyidae)[source]: Use GIT-FETCH and GIT-FILE-NAME.
This commit is contained in:
parent
ab3423d2ff
commit
429947ef62
1 changed files with 7 additions and 6 deletions
|
@ -6204,18 +6204,19 @@ (define-public geomyidae
|
||||||
(version "0.31")
|
(version "0.31")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method git-fetch)
|
||||||
(uri (string-append "http://git.r-36.net/geomyidae/snapshot/"
|
(uri (git-reference
|
||||||
"geomyidae-" version ".tar.bz2"))
|
(url "git://r-36.net/geomyidae")
|
||||||
|
(commit (string-append "v" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32 "1ldv4bca2x9kq2fwmzg3l6qahvzg9kki3j9j5njl74k23zc2acik"))))
|
||||||
"1ih7220c6mgq4r7blm4kx3pxbl53sph58lqgwci6cmi3c0sq5c3x"))))
|
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:make-flags (list "CC=gcc"
|
`(#:make-flags (list "CC=gcc"
|
||||||
(string-append "PREFIX="
|
(string-append "PREFIX="
|
||||||
(assoc-ref %outputs "out")))
|
(assoc-ref %outputs "out")))
|
||||||
#:tests? #f ;no tests
|
#:tests? #f ; no tests
|
||||||
#:phases (modify-phases %standard-phases
|
#:phases (modify-phases %standard-phases
|
||||||
(delete 'configure))))
|
(delete 'configure))))
|
||||||
(home-page "http://git.r-36.net/geomyidae")
|
(home-page "http://git.r-36.net/geomyidae")
|
||||||
|
|
Loading…
Reference in a new issue