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