summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorEfraim Flashner <efraim@flashner.co.il>2018-12-01 18:48:41 +0200
committerEfraim Flashner <efraim@flashner.co.il>2018-12-01 18:48:54 +0200
commitfb0b645658041c3061d2f70dc1a11a100f569217 (patch)
treefd2db14e40b95aec5bff2061a57be007d01bb707 /gnu
parent37b82ccc390396a078351fd9f7b522cca275a8c9 (diff)
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.
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/vim.scm8
1 files changed, 6 insertions, 2 deletions
diff --git a/gnu/packages/vim.scm b/gnu/packages/vim.scm
index 28d20af0235..ecce4e0ae63 100644
--- a/gnu/packages/vim.scm
+++ b/gnu/packages/vim.scm
@@ -459,7 +459,7 @@ trouble using them, because you do not have to remember each snippet name.")
459(define-public vim-fugitive 459(define-public vim-fugitive
460 (package 460 (package
461 (name "vim-fugitive") 461 (name "vim-fugitive")
462 (version "2.3") 462 (version "2.5")
463 (source 463 (source
464 (origin 464 (origin
465 (method git-fetch) 465 (method git-fetch)
@@ -469,7 +469,7 @@ trouble using them, because you do not have to remember each snippet name.")
469 (file-name (git-file-name name version)) 469 (file-name (git-file-name name version))
470 (sha256 470 (sha256
471 (base32 471 (base32
472 "17s94a8g5z0lrs7yy4nyqyvp9ykys5ws2ar3m3c0bjsn0iazd7m3")))) 472 "17yz7gxn7a49jzndr4z5vnk1y4a6c22qss3mwxzmq4m46fni0k8q"))))
473 (build-system gnu-build-system) 473 (build-system gnu-build-system)
474 (arguments 474 (arguments
475 '(#:tests? #f 475 '(#:tests? #f
@@ -481,9 +481,13 @@ trouble using them, because you do not have to remember each snippet name.")
481 (lambda* (#:key outputs #:allow-other-keys) 481 (lambda* (#:key outputs #:allow-other-keys)
482 (let* ((out (assoc-ref outputs "out")) 482 (let* ((out (assoc-ref outputs "out"))
483 (vimfiles (string-append out "/share/vim/vimfiles")) 483 (vimfiles (string-append out "/share/vim/vimfiles"))
484 (autoload (string-append vimfiles "/autoload"))
484 (doc (string-append vimfiles "/doc")) 485 (doc (string-append vimfiles "/doc"))
486 (ftdetect (string-append vimfiles "/ftdetect"))
485 (plugin (string-append vimfiles "/plugin"))) 487 (plugin (string-append vimfiles "/plugin")))
488 (copy-recursively "autoload" autoload)
486 (copy-recursively "doc" doc) 489 (copy-recursively "doc" doc)
490 (copy-recursively "ftdetect" ftdetect)
487 (copy-recursively "plugin" plugin) 491 (copy-recursively "plugin" plugin)
488 #t)))))) 492 #t))))))
489 (home-page "https://github.com/tpope/vim-fugitive") 493 (home-page "https://github.com/tpope/vim-fugitive")