gnu: neovim: Update to 0.3.5.

* gnu/packages/vim.scm (neovim): Update to 0.3.5.
[source]: Use git-fetch.

Signed-off-by: Arun Isaac <arunisaac@systemreboot.net>
This commit is contained in:
HiPhish 2019-05-10 23:36:47 +02:00 committed by Arun Isaac
parent 825c39bfbb
commit c3ebaec531
No known key found for this signature in database
GPG key ID: 2E25EE8B61802BB3

View file

@ -5,6 +5,7 @@
;;; Copyright © 2017 Ricardo Wurmus <rekado@elephly.net>
;;; Copyright © 2017 Marius Bakke <mbakke@fastmail.com>
;;; Copyright © 2018 Tobias Geerinckx-Rice <me@tobias.gr>
;;; Copyright © 2019 HiPhish <hiphish@posteo.de>
;;;
;;; This file is part of GNU Guix.
;;;
@ -729,16 +730,17 @@ (define-public neovim-syntastic
(define-public neovim
(package
(name "neovim")
(version "0.3.4")
(version "0.3.5")
(source
(origin
(method url-fetch)
(uri (string-append "https://github.com/neovim/neovim/"
"archive/v" version ".tar.gz"))
(file-name (string-append name "-" version ".tar.gz"))
(method git-fetch)
(uri (git-reference
(url "https://github.com/neovim/neovim")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32
"03mwfhr9rq86p8lypbdfyl7c7xyn6nzv2ipd8jc33bxzvs5i0hd6"))))
"113lrr9gwimvvzlkwlishm4cjqcf30xq9jfxn7vh41ckgnbiwf3w"))))
(build-system cmake-build-system)
(arguments
`(#:modules ((srfi srfi-26)