diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2018-06-12 11:12:33 +0300 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2018-06-12 11:16:06 +0300 |
commit | c71cc133ecdb314fc4862739e615c08aca429746 (patch) | |
tree | 92397bbc6cff0f248c3a008f581f9ba97f13e00d /gnu/packages/vim.scm | |
parent | 261348e20d25be2e8e4997ceb21811dd821df367 (diff) |
gnu: vim-syntastic: Update to 3.9.0.
* gnu/packages/vim.scm (vim-syntastic): Update to 3.9.0.
[source]: Switch to git checkout.
Diffstat (limited to 'gnu/packages/vim.scm')
-rw-r--r-- | gnu/packages/vim.scm | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/gnu/packages/vim.scm b/gnu/packages/vim.scm index 898a4b3533..c6906b12cf 100644 --- a/gnu/packages/vim.scm +++ b/gnu/packages/vim.scm @@ -573,16 +573,17 @@ and powerline symbols, etc.") (define-public vim-syntastic (package (name "vim-syntastic") - (version "3.8.0") + (version "3.9.0") (source (origin - (method url-fetch) - (uri (string-append "https://github.com/vim-syntastic/syntastic/archive/" - version ".tar.gz")) - (file-name (string-append name "-" version ".tar.gz")) + (method git-fetch) + (uri (git-reference + (url "https://github.com/vim-syntastic/syntastic") + (commit version))) + (file-name (git-file-name name version)) (sha256 (base32 - "0wsnd9bsp5x6yiw96h1bnd1vyxdkh130hb82kyyxydgsplx92ima")))) + "121a1mxgfng2y5zmivyyk02mca8pyw72crivf4f1q9nhn0barf57")))) (build-system gnu-build-system) (arguments `(#:tests? #f |