me
/
guix
Archived
1
0
Fork 0

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

* gnu/packages/vim.scm (vim-neocomplete)[source]: Download using
git-fetch.
master
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
1 changed files with 6 additions and 5 deletions

View File

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