pkgs: vim: add vim-deoplete-vim-lsp
This commit is contained in:
parent
ef7352407c
commit
2bddb61175
1 changed files with 27 additions and 0 deletions
|
@ -177,3 +177,30 @@ buffer.")
|
||||||
;; vim-lsp itself is licensed under expat however it borrows code from other
|
;; vim-lsp itself is licensed under expat however it borrows code from other
|
||||||
;; third party projects that are not strictly expat. Setting license to #f for now.
|
;; third party projects that are not strictly expat. Setting license to #f for now.
|
||||||
(license #f))))
|
(license #f))))
|
||||||
|
|
||||||
|
(define-public vim-deoplete-vim-lsp
|
||||||
|
(let ((commit "af5432f1e063fd4c3a5879aa8c2afe82c17dc1c9")
|
||||||
|
(revision "1"))
|
||||||
|
(package
|
||||||
|
(name "vim-deoplete-vim-lsp")
|
||||||
|
;; No releases have been tagged.
|
||||||
|
(version (git-version "0.0.0" revision commit))
|
||||||
|
(source (origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url
|
||||||
|
"https://github.com/lighttiger2505/deoplete-vim-lsp")
|
||||||
|
(commit commit)))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"1s6fw6vkpl0yiya22g13v4i14w3n1ds2zr8zdlwpkk44bf0225px"))))
|
||||||
|
(build-system copy-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:install-plan '(("autoload" "share/vim/vimfiles/")
|
||||||
|
("plugin" "share/vim/vimfiles/")
|
||||||
|
("rplugin" "share/vim/vimfiles/"))))
|
||||||
|
(home-page "https://github.com/lighttiger2505/deoplete-vim-lsp")
|
||||||
|
(synopsis "deoplete source for vim-lsp")
|
||||||
|
(description "deoplete source for vim-lsp")
|
||||||
|
(license license:expat))))
|
||||||
|
|
Loading…
Reference in a new issue