gnu: vcsh: Don't use unstable tarball.

* gnu/packages/version-control.scm (vcsh)[source]: Use GIT-FETCH and
GIT-FILE-NAME.
This commit is contained in:
Tobias Geerinckx-Rice 2019-03-30 20:21:53 +01:00
parent 3d78bf0e10
commit c8c42907a1
No known key found for this signature in database
GPG Key ID: 0DB0FF884F556D79
1 changed files with 9 additions and 8 deletions

View File

@ -1026,14 +1026,15 @@ manipulate them in various ways.")
(package (package
(name "vcsh") (name "vcsh")
(version "1.20151229") (version "1.20151229")
(source (origin (source
(method url-fetch) (origin
(uri (string-append "https://github.com/RichiH/vcsh/archive/v" (method git-fetch)
version ".tar.gz")) (uri (git-reference
(file-name (string-append name "-" version ".tar.gz")) (url "https://github.com/RichiH/vcsh.git")
(sha256 (commit (string-append "v" version))))
(base32 (file-name (git-file-name name version))
"1ym3swkh738c3vciffvlr96vqzhwmzkb8ajqzap8f0j9n039a1mf")))) (sha256
(base32 "1grpj45nbpv4j60vd2kg4rj53zrm0bc0h9l4pfd3c2mwbvywm6ab"))))
(build-system gnu-build-system) (build-system gnu-build-system)
(native-inputs (native-inputs
`(("which" ,which))) `(("which" ,which)))