mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-12 06:06:53 -05:00
gnu: vim-dispatch: Update to 1.8-1.4c695bc.
* gnu/packages/vim.scm (vim-dispatch): Update to 1.8-1.4c695bc. Change-Id: I70b53f048c365fda47ba8820392b1f94b6bcfedd
This commit is contained in:
parent
4cdf734804
commit
ad839564c8
1 changed files with 23 additions and 20 deletions
|
@ -1080,29 +1080,32 @@ (define-public neovim-asyncrun
|
||||||
(name "neovim-asyncrun")))
|
(name "neovim-asyncrun")))
|
||||||
|
|
||||||
(define-public vim-dispatch
|
(define-public vim-dispatch
|
||||||
(package
|
;; Last release was in June 2019.
|
||||||
(name "vim-dispatch")
|
(let ((commit "4c695bc052cad2ae6b980aebbe48d046466e27ae")
|
||||||
(version "1.8")
|
(revision "1"))
|
||||||
(source
|
(package
|
||||||
(origin
|
(name "vim-dispatch")
|
||||||
(method git-fetch)
|
(version (git-version "1.8" revision commit))
|
||||||
(uri (git-reference
|
(source
|
||||||
(url "https://github.com/tpope/vim-dispatch")
|
(origin
|
||||||
(commit (string-append "v" version))))
|
(method git-fetch)
|
||||||
(file-name (git-file-name name version))
|
(uri (git-reference
|
||||||
(sha256
|
(url "https://github.com/tpope/vim-dispatch")
|
||||||
(base32
|
(commit commit)))
|
||||||
"1m8b5mn2zqlphzs6xfwykwmghf6p0wabrhpjmh7vav35jgcxc4wl"))))
|
(file-name (git-file-name name version))
|
||||||
(build-system vim-build-system)
|
(sha256
|
||||||
(arguments
|
(base32
|
||||||
(list #:plugin-name "dispatch"))
|
"13c63n7gylny2s84k05cpl4cjn070d3qk6yagxny23yanz29hc15"))))
|
||||||
(home-page "https://github.com/tpope/vim-dispatch")
|
(build-system vim-build-system)
|
||||||
(synopsis "Asynchronous build and test dispatcher")
|
(arguments
|
||||||
(description "Leverage the power of Vim's compiler plugins without being
|
(list #:plugin-name "dispatch"))
|
||||||
|
(home-page "https://github.com/tpope/vim-dispatch")
|
||||||
|
(synopsis "Asynchronous build and test dispatcher")
|
||||||
|
(description "Leverage the power of Vim's compiler plugins without being
|
||||||
bound by synchronicity. Kick off builds and test suites using one of several
|
bound by synchronicity. Kick off builds and test suites using one of several
|
||||||
asynchronous adapters (including tmux, screen, and a headless mode), and when
|
asynchronous adapters (including tmux, screen, and a headless mode), and when
|
||||||
the job completes, errors will be loaded and parsed automatically.")
|
the job completes, errors will be loaded and parsed automatically.")
|
||||||
(license license:vim)))
|
(license license:vim))))
|
||||||
|
|
||||||
(define-public vim-gemini-vim
|
(define-public vim-gemini-vim
|
||||||
;; No releases have been tagged.
|
;; No releases have been tagged.
|
||||||
|
|
Loading…
Reference in a new issue