gnu: vim: Don't use unstable tarball.

* gnu/packages/vim.scm (vim)[source]: Use 'git-fetch'.
This commit is contained in:
Efraim Flashner 2018-12-27 15:18:37 +02:00
parent 3d6bc5af91
commit b130354999
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -63,13 +63,14 @@ (define-public vim
(name "vim") (name "vim")
(version "8.1.0551") (version "8.1.0551")
(source (origin (source (origin
(method url-fetch) (method git-fetch)
(uri (string-append "https://github.com/vim/vim/archive/v" (uri (git-reference
version ".tar.gz")) (url "https://github.com/vim/vim")
(file-name (string-append name "-" version ".tar.gz")) (commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256 (sha256
(base32 (base32
"1wi6j9w04wg3hxsch3izl2mxb0065vpvxscz19zjn5ypkfypnm8n")))) "1db5ihzj9flz62alb3kd1w173chb5vbni325abqjf25aly7c22n0"))))
(build-system gnu-build-system) (build-system gnu-build-system)
(arguments (arguments
`(#:test-target "test" `(#:test-target "test"