diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2019-11-13 21:36:00 +0200 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2019-11-13 21:36:00 +0200 |
commit | 6a9aa795ee23d953ec37140729eacb49a69cd277 (patch) | |
tree | 8886ea73e539904105d99218126960a9f516fd5d | |
parent | 320ba5900febeb8ce1c408320f8a9ea801cc553f (diff) |
gnu: vim-neocomplete: Don't use unstable tarball.
* gnu/packages/vim.scm (vim-neocomplete)[source]: Download using
git-fetch.
-rw-r--r-- | gnu/packages/vim.scm | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/gnu/packages/vim.scm b/gnu/packages/vim.scm index 29563a7ab5..ae07bcd9b6 100644 --- a/gnu/packages/vim.scm +++ b/gnu/packages/vim.scm @@ -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 |