diff options
| author | Oleg Pykhalov <go.wigust@gmail.com> | 2017-10-08 09:40:18 +0300 |
|---|---|---|
| committer | Oleg Pykhalov <go.wigust@gmail.com> | 2017-10-08 09:41:03 +0300 |
| commit | 319f3cbaf5a8be6834f0e688535b0f66c83e92a1 (patch) | |
| tree | a39fecd18277d5118e24f4a47680e97880c764db | |
| parent | wigust: Add angband-nonfree. (diff) | |
| download | guix-wigust-319f3cbaf5a8be6834f0e688535b0f66c83e92a1.tar.gz | |
wigust: Add emacs-visual-regexp.
* wigust/packages/emacs.scm (emacs-visual-regexp): New variable.
| -rw-r--r-- | wigust/packages/emacs.scm | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/wigust/packages/emacs.scm b/wigust/packages/emacs.scm index f69acef..0144599 100644 --- a/wigust/packages/emacs.scm +++ b/wigust/packages/emacs.scm @@ -1818,3 +1818,21 @@ the current upstream.") (synopsis "Execute menu items as commands, with completion") (description "Execute menu items as commands, with completion.") (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")) + (sha256 + (base32 + "1czmhvcivlcdyz7rfm0vd4a3xsgmy4qbvbl6yjxc217wrxqflr92")))) + (build-system emacs-build-system) + (home-page "https://github.com/benma/visual-regexp.el/") + (synopsis "A regexp command with interactive visual feedback") + (description "A regexp command with interactive visual feedback") + (license license:gpl3+))) |
