mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: vim-fugitive: Update to 2.5.
* gnu/packages/vim.scm (vim-fugitive): Update to 2.5. [arguments]: Also install the autoload and ftdetect folders.
This commit is contained in:
parent
37b82ccc39
commit
fb0b645658
1 changed files with 6 additions and 2 deletions
|
@ -459,7 +459,7 @@ (define-public vim-context-filetype
|
|||
(define-public vim-fugitive
|
||||
(package
|
||||
(name "vim-fugitive")
|
||||
(version "2.3")
|
||||
(version "2.5")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
|
@ -469,7 +469,7 @@ (define-public vim-fugitive
|
|||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"17s94a8g5z0lrs7yy4nyqyvp9ykys5ws2ar3m3c0bjsn0iazd7m3"))))
|
||||
"17yz7gxn7a49jzndr4z5vnk1y4a6c22qss3mwxzmq4m46fni0k8q"))))
|
||||
(build-system gnu-build-system)
|
||||
(arguments
|
||||
'(#:tests? #f
|
||||
|
@ -481,9 +481,13 @@ (define-public vim-fugitive
|
|||
(lambda* (#:key outputs #:allow-other-keys)
|
||||
(let* ((out (assoc-ref outputs "out"))
|
||||
(vimfiles (string-append out "/share/vim/vimfiles"))
|
||||
(autoload (string-append vimfiles "/autoload"))
|
||||
(doc (string-append vimfiles "/doc"))
|
||||
(ftdetect (string-append vimfiles "/ftdetect"))
|
||||
(plugin (string-append vimfiles "/plugin")))
|
||||
(copy-recursively "autoload" autoload)
|
||||
(copy-recursively "doc" doc)
|
||||
(copy-recursively "ftdetect" ftdetect)
|
||||
(copy-recursively "plugin" plugin)
|
||||
#t))))))
|
||||
(home-page "https://github.com/tpope/vim-fugitive")
|
||||
|
|
Loading…
Reference in a new issue