mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-20 14:47:20 +01:00
gnu: emacs-goto-chg: Update to 1.7.3-1.1829a13.
* gnu/packages/emacs-xyz.scm (emacs-goto-chg): Update to 1.7.3-1.1829a13. [origin]: Use GIT-FETCH and GIT-REFERENCE. [home-page]: Update. [inputs]: Add emacs-undo-tree. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
81d1baafdb
commit
ae429e48d1
1 changed files with 24 additions and 19 deletions
|
@ -6136,28 +6136,33 @@ (define-public emacs-evil-collection
|
||||||
(license license:gpl3+))))
|
(license license:gpl3+))))
|
||||||
|
|
||||||
(define-public emacs-goto-chg
|
(define-public emacs-goto-chg
|
||||||
(package
|
(let ((commit "1829a13026c597e358f716d2c7793202458120b5")
|
||||||
(name "emacs-goto-chg")
|
(version "1.7.3")
|
||||||
(version "1.6")
|
(revision "1"))
|
||||||
(source
|
(package
|
||||||
(origin
|
(name "emacs-goto-chg")
|
||||||
(method url-fetch)
|
(version (git-version version revision commit))
|
||||||
;; There is no versioned source.
|
(source
|
||||||
(uri "https://www.emacswiki.org/emacs/download/goto-chg.el")
|
(origin
|
||||||
(file-name (string-append "goto-chg-" version ".el"))
|
(method git-fetch)
|
||||||
(sha256
|
(uri (git-reference
|
||||||
(base32
|
(url "https://github.com/emacs-evil/goto-chg")
|
||||||
"078d6p4br5vips7b9x4v6cy0wxf6m5ij9gpqd4g33bryn22gnpij"))))
|
(commit commit)))
|
||||||
(build-system emacs-build-system)
|
(file-name (git-file-name name version))
|
||||||
;; There is no other home page.
|
(sha256
|
||||||
(home-page "https://www.emacswiki.org/emacs/goto-chg.el")
|
(base32
|
||||||
(synopsis "Go to the last change in the Emacs buffer")
|
"1y603maw9xwdj3qiarmf1bp13461f9f5ackzicsbynl0i9la3qki"))))
|
||||||
(description
|
(build-system emacs-build-system)
|
||||||
"This package provides @code{M-x goto-last-change} command that goes to
|
(propagated-inputs
|
||||||
|
`(("emacs-undo-tree" ,emacs-undo-tree)))
|
||||||
|
(home-page "https://github.com/emacs-evil/goto-chg")
|
||||||
|
(synopsis "Go to the last change in the Emacs buffer")
|
||||||
|
(description
|
||||||
|
"This package provides @code{M-x goto-last-change} command that goes to
|
||||||
the point of the most recent edit in the current Emacs buffer. When repeated,
|
the point of the most recent edit in the current Emacs buffer. When repeated,
|
||||||
go to the second most recent edit, etc. Negative argument, @kbd{C-u -}, is
|
go to the second most recent edit, etc. Negative argument, @kbd{C-u -}, is
|
||||||
used for reverse direction.")
|
used for reverse direction.")
|
||||||
(license license:gpl2+)))
|
(license license:gpl2+))))
|
||||||
|
|
||||||
(define-public emacs-janpath-evil-numbers
|
(define-public emacs-janpath-evil-numbers
|
||||||
(let ((commit "d988041c1fe6e941dc8d591390750b237f71f524")
|
(let ((commit "d988041c1fe6e941dc8d591390750b237f71f524")
|
||||||
|
|
Loading…
Reference in a new issue