gnu: vim-neocomplete: Don't use unstable tarball.

* gnu/packages/vim.scm (vim-neocomplete)[source]: Download using
git-fetch.
This commit is contained in:
Efraim Flashner 2019-11-13 21:36:00 +02:00
parent 320ba5900f
commit 6a9aa795ee
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -234,13 +234,14 @@ (define-public vim-neocomplete
(version "2.1") (version "2.1")
(source (source
(origin (origin
(method url-fetch) (method git-fetch)
(uri (string-append "https://github.com/Shougo/neocomplete.vim/" (uri (git-reference
"archive/ver." version ".tar.gz")) (url "https://github.com/Shougo/neocomplete.vim")
(file-name (string-append name "-" version ".tar.gz")) (commit (string-append "ver." version))))
(file-name (git-file-name name version))
(sha256 (sha256
(base32 (base32
"1307gbrdwam2akq9w2lpijc41740i4layk2qkd9sjkqxfch5lni2")))) "1h6sci5mhdfg6sjsjpi8l5li02hg858zcayiwl60y9j2gqnd18lv"))))
(build-system gnu-build-system) (build-system gnu-build-system)
(arguments (arguments
`(#:tests? #f `(#:tests? #f