summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorEfraim Flashner <efraim@flashner.co.il>2026-04-06 12:27:05 +0300
committerEfraim Flashner <efraim@flashner.co.il>2026-04-06 12:43:50 +0300
commit2ad4fb70a0f5b9e221bf95a092e6e6a53e9ce873 (patch)
tree7ccc656db9d9ecaef8220b5d6404b3df5797c9da /gnu
parentf52f04210b88db81a0de38fee00b57aa49cee636 (diff)
gnu: vim-fugitive: Update to 3.7-1.3b753cf.
* gnu/packages/vim.scm (vim-fugitive): Update to 3.7-1.3b753cf. Change-Id: I5c9268ebd8ddf36af933433a4dc0fa4ada8ec13f
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/vim.scm39
1 files changed, 21 insertions, 18 deletions
diff --git a/gnu/packages/vim.scm b/gnu/packages/vim.scm
index 41b1250aa3e..c37131cb7a3 100644
--- a/gnu/packages/vim.scm
+++ b/gnu/packages/vim.scm
@@ -551,27 +551,30 @@ similar to CoqIDE or ProofGeneral.")
(append python-minimal)))))
(define-public vim-fugitive
- (package
- (name "vim-fugitive")
- (version "3.7")
- (source
- (origin
- (method git-fetch)
- (uri (git-reference
+ (let ((commit "3b753cf8c6a4dcde6edee8827d464ba9b8c4a6f0")
+ (revision "1"))
+ (package
+ (name "vim-fugitive")
+ (version (git-version "3.7" revision commit))
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
(url "https://github.com/tpope/vim-fugitive")
- (commit (string-append "v" version))))
- (file-name (git-file-name name version))
- (sha256
- (base32 "138290g2aph1jjhaza6biky5qi4ka6435s01bwxivllgb53g3irc"))))
- (build-system vim-build-system)
- (arguments
- (list #:plugin-name "fugitive"))
- (home-page "https://github.com/tpope/vim-fugitive")
- (synopsis "Vim plugin to work with Git")
- (description "Vim-fugitive is a wrapper for Vim that complements the
+ (commit commit)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "12254b827ps68naihdhzdhvcr0v0ksdxwks2yvq63vwwr85xpbqq"))))
+ (build-system vim-build-system)
+ (arguments
+ (list #:plugin-name "fugitive"))
+ (home-page "https://github.com/tpope/vim-fugitive")
+ (synopsis "Vim plugin to work with Git")
+ (description
+ "Vim-fugitive is a wrapper for Vim that complements the
command window, where you can stage and review your changes before the next
commit or run any Git arbitrary command.")
- (license license:vim))) ; distributed under the same license as vim
+ (license license:vim)))) ; distributed under the same license as vim
(define-public vim-airline
(package