gnu: Add emacs-visual-regexp.

* gnu/packages/emacs.scm (emacs-visual-regexp): New public variable.
This commit is contained in:
Oleg Pykhalov 2018-05-02 19:10:11 +03:00
parent 192a9a20f0
commit 2f9e1378b6
No known key found for this signature in database
GPG key ID: 7246E11C69B79569

View file

@ -9709,3 +9709,23 @@ (define-public emacs-default-text-scale
(description "This package provides commands for increasing or
decreasing the default font size in all GUI Emacs frames.")
(license license:gpl3+))))
(define-public emacs-visual-regexp
(package
(name "emacs-visual-regexp")
(version "1.1.1")
(source
(origin
(method url-fetch)
(uri (string-append "https://github.com/benma/visual-regexp.el/archive/"
"v" version ".tar.gz"))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32
"1czmhvcivlcdyz7rfm0vd4a3xsgmy4qbvbl6yjxc217wrxqflr92"))))
(build-system emacs-build-system)
(home-page "https://github.com/benma/visual-regexp.el/")
(synopsis "Regexp command with interactive visual feedback")
(description "This package provides an Emacs regexp command with
interactive visual feedback.")
(license license:gpl3+)))