From: Efraim Flashner <efraim@flashner.co.il>
To: 29459@debbugs.gnu.org
Subject: [bug#29459] [PATCH] gnu: Add vim-fugitive.
Date: Sun, 26 Nov 2017 21:31:04 +0200 [thread overview]
Message-ID: <20171126193105.7349-1-efraim@flashner.co.il> (raw)
* gnu/packages/vim.scm (vim-fugitive): New variable.
---
gnu/packages/vim.scm | 39 +++++++++++++++++++++++++++++++++++++++
1 file changed, 39 insertions(+)
diff --git a/gnu/packages/vim.scm b/gnu/packages/vim.scm
index 0163662d1..63fa98a13 100644
--- a/gnu/packages/vim.scm
+++ b/gnu/packages/vim.scm
@@ -440,6 +440,45 @@ trouble using them, because you do not have to remember each snippet name.")
(home-page "https://github.com/Shougo/context_filetype.vim")
(license license:expat)))) ; ??? check again
+(define-public vim-fugitive
+ (let ((commit "de6c05720cdf74c0218218d7207f700232a5b6dc")
+ (revision "1"))
+ (package
+ (name "vim-fugitive")
+ (version (string-append "2.2-" revision "." (string-take commit 7)))
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/tpope/vim-fugitive.git")
+ (commit commit)))
+ (file-name (string-append name "-" version "-checkout"))
+ (sha256
+ (base32
+ "0zg9vv7hirnx45vc2mwgg0xijmwwz55bssyd6cpdz71wbhrcpxxb"))))
+ (build-system gnu-build-system)
+ (arguments
+ '(#:tests? #f
+ #:phases
+ (modify-phases %standard-phases
+ (delete 'configure)
+ (delete 'build)
+ (replace 'install
+ (lambda* (#:key outputs #:allow-other-keys)
+ (let* ((out (assoc-ref outputs "out"))
+ (vimfiles (string-append out "/share/vim/vimfiles"))
+ (doc (string-append vimfiles "/doc"))
+ (plugin (string-append vimfiles "/plugin")))
+ (copy-recursively "doc" doc)
+ (copy-recursively "plugin" plugin)
+ #t))))))
+ (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
+
(define-public vim-airline
(package
(name "vim-airline")
--
2.15.0
next reply other threads:[~2017-11-26 19:32 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-11-26 19:31 Efraim Flashner [this message]
2017-11-26 19:31 ` [bug#29460] [PATCH] gnu: Add gama Efraim Flashner
2017-11-26 19:46 ` Jonathan Brielmaier
2017-11-27 14:03 ` Ludovic Courtès
2017-11-27 20:37 ` bug#29460: " Efraim Flashner
2017-11-27 14:02 ` [bug#29459] [PATCH] gnu: Add vim-fugitive Ludovic Courtès
2017-11-28 7:30 ` bug#29459: " Efraim Flashner
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
List information: https://guix.gnu.org/
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20171126193105.7349-1-efraim@flashner.co.il \
--to=efraim@flashner.co.il \
--cc=29459@debbugs.gnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/guix.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).