gnu: vim-nerdcommenter: Update to 2.6.0, use G-expressions.
* gnu/packages/vim.scm (vim-nerdcommenter): Update to 2.6.0. [source]: Use release tag. [arguments]: Use G-expressions. Signed-off-by: Mathieu Othacehe <othacehe@gnu.org>
This commit is contained in:
parent
c3d2b20b1b
commit
82ab5f3965
1 changed files with 24 additions and 25 deletions
|
|
@ -1375,30 +1375,29 @@ files for reading or editing, and perform basic file system operations.")
|
||||||
(license license:wtfpl2)))
|
(license license:wtfpl2)))
|
||||||
|
|
||||||
(define-public vim-nerdcommenter
|
(define-public vim-nerdcommenter
|
||||||
(let ((commit "a65465d321f2f8a74b2ffa540b9b87563f7e12e8")
|
(package
|
||||||
(revision "1"))
|
(name "vim-nerdcommenter")
|
||||||
(package
|
(version "2.6.0")
|
||||||
(name "vim-nerdcommenter")
|
(source
|
||||||
(version (git-version "2.5.2" revision commit))
|
(origin
|
||||||
(source
|
(method git-fetch)
|
||||||
(origin
|
(uri (git-reference
|
||||||
(method git-fetch)
|
(url "https://github.com/preservim/nerdcommenter")
|
||||||
(uri (git-reference
|
(commit version)))
|
||||||
(url "https://github.com/preservim/nerdcommenter")
|
(file-name (git-file-name name version))
|
||||||
(commit commit)))
|
(sha256
|
||||||
(file-name (git-file-name name version))
|
(base32 "1ka2rqn7rby55aps3iblh1dcqxm7m7qx72mpkz6y2aaj8mkj0zyd"))))
|
||||||
(sha256
|
(build-system copy-build-system)
|
||||||
(base32 "00ir65iv8jfbgzjmj7332fmydh0qhabbhx8zbvd3j6pgfxqpaafw"))))
|
(arguments
|
||||||
(build-system copy-build-system)
|
(list
|
||||||
(arguments
|
#:install-plan
|
||||||
'(#:install-plan
|
#~`(("autoload" "share/vim/vimfiles/")
|
||||||
'(("autoload" "share/vim/vimfiles/")
|
("doc" "share/vim/vimfiles/")
|
||||||
("doc" "share/vim/vimfiles/")
|
("plugin" "share/vim/vimfiles/"))))
|
||||||
("plugin" "share/vim/vimfiles/"))))
|
(home-page "https://github.com/preservim/nerdcommenter")
|
||||||
(home-page "https://github.com/preservim/nerdcommenter")
|
(synopsis "Vim plugin for easy commenting of code")
|
||||||
(synopsis "Vim plugin for easy commenting of code")
|
(description
|
||||||
(description
|
"NERD commenter is a Vim plugin that provides many different commenting
|
||||||
"NERD commenter is a Vim plugin that provides many different commenting
|
|
||||||
operations and styles which are invoked via key mappings and a menu. These
|
operations and styles which are invoked via key mappings and a menu. These
|
||||||
operations are available for most filetypes.")
|
operations are available for most filetypes.")
|
||||||
(license license:cc0))))
|
(license license:cc0)))
|
||||||
|
|
|
||||||
Reference in a new issue