gnu: emacs-wgrep: Update to 2.3.0.
* gnu/packages/emacs-xyz.scm (emacs-wgrep): Update to 2.3.0. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
96c822a3ea
commit
48b58245a7
|
@ -5268,28 +5268,26 @@ Dust.js, React/JSX, Angularjs, ejs, etc.")
|
||||||
(license license:gpl3+)))
|
(license license:gpl3+)))
|
||||||
|
|
||||||
(define-public emacs-wgrep
|
(define-public emacs-wgrep
|
||||||
(let ((commit "414be70bd313e482cd9f0b70fd2daad4ee23497c"))
|
(package
|
||||||
;; Late commit fixes compatibility issue with Emacs 26+.
|
(name "emacs-wgrep")
|
||||||
(package
|
(version "2.3.0")
|
||||||
(name "emacs-wgrep")
|
(source (origin
|
||||||
(version (git-version "2.1.10" "1" commit))
|
(method url-fetch)
|
||||||
(source (origin
|
(uri (string-append
|
||||||
(method git-fetch)
|
"https://github.com/mhayashi1120/Emacs-wgrep/archive/"
|
||||||
(uri (git-reference
|
version ".tar.gz"))
|
||||||
(url "https://github.com/mhayashi1120/Emacs-wgrep")
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
(commit commit)))
|
(sha256
|
||||||
(file-name (git-file-name name version))
|
(base32
|
||||||
(sha256
|
"1cssqbg03fjb6xwf7idv1l3jjsh9r5r232ryi11czqlxfiv658bj"))))
|
||||||
(base32
|
(build-system emacs-build-system)
|
||||||
"1sdhd587q3pg92lhiayph87azhalmf1gzrnsprkmqvnphv7mvks9"))))
|
(home-page "https://github.com/mhayashi1120/Emacs-wgrep")
|
||||||
(build-system emacs-build-system)
|
(synopsis "Edit a grep buffer and apply those changes to the files")
|
||||||
(home-page "https://github.com/mhayashi1120/Emacs-wgrep")
|
(description
|
||||||
(synopsis "Edit a grep buffer and apply those changes to the files")
|
"Emacs wgrep allows you to edit a grep buffer and apply those changes
|
||||||
(description
|
|
||||||
"Emacs wgrep allows you to edit a grep buffer and apply those changes
|
|
||||||
to the file buffer. Several backends are supported beside the classic grep:
|
to the file buffer. Several backends are supported beside the classic grep:
|
||||||
ack, ag, helm and pt.")
|
ack, ag, helm and pt.")
|
||||||
(license license:gpl3+))))
|
(license license:gpl3+)))
|
||||||
|
|
||||||
(define-public emacs-helm
|
(define-public emacs-helm
|
||||||
(package
|
(package
|
||||||
|
|
Loading…
Reference in New Issue