diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-03-19 15:06:52 +0100 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-03-19 16:57:45 +0100 |
commit | 429947ef626337cf67775b74ac312fd1ee057167 (patch) | |
tree | f9219d5c2137e80538b30b3c5efff784c1c85450 | |
parent | ab3423d2ff96b4789b066267f0624e5a035984a7 (diff) | |
download | patches-429947ef626337cf67775b74ac312fd1ee057167.tar patches-429947ef626337cf67775b74ac312fd1ee057167.tar.gz |
gnu: geomyidae: Don't use unstable tarball.
* gnu/packages/web.scm (geomyidae)[source]: Use GIT-FETCH and
GIT-FILE-NAME.
-rw-r--r-- | gnu/packages/web.scm | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/gnu/packages/web.scm b/gnu/packages/web.scm index dfabb3aa65..12f3b57bac 100644 --- a/gnu/packages/web.scm +++ b/gnu/packages/web.scm @@ -6204,18 +6204,19 @@ in Perl but is not nearly as capable as @code{HTML::Tidy}.") (version "0.31") (source (origin - (method url-fetch) - (uri (string-append "http://git.r-36.net/geomyidae/snapshot/" - "geomyidae-" version ".tar.bz2")) + (method git-fetch) + (uri (git-reference + (url "git://r-36.net/geomyidae") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) (sha256 - (base32 - "1ih7220c6mgq4r7blm4kx3pxbl53sph58lqgwci6cmi3c0sq5c3x")))) + (base32 "1ldv4bca2x9kq2fwmzg3l6qahvzg9kki3j9j5njl74k23zc2acik")))) (build-system gnu-build-system) (arguments `(#:make-flags (list "CC=gcc" (string-append "PREFIX=" (assoc-ref %outputs "out"))) - #:tests? #f ;no tests + #:tests? #f ; no tests #:phases (modify-phases %standard-phases (delete 'configure)))) (home-page "http://git.r-36.net/geomyidae") |