gnu: Add emacs-interactive-align.

* gnu/packages/emacs.scm (emacs-interactive-align): New public variable.
This commit is contained in:
Oleg Pykhalov 2018-05-02 19:12:07 +03:00
parent d3f7e5333b
commit b268bf18be
No known key found for this signature in database
GPG Key ID: 7246E11C69B79569
1 changed files with 19 additions and 0 deletions

View File

@ -9835,3 +9835,22 @@ compilation/grep buffers. Works with @code{wgrep}, @code{ack}, @code{ag},
(synopsis "Display firefox bookmarks with Emacs Helm interface") (synopsis "Display firefox bookmarks with Emacs Helm interface")
(description "Display firefox bookmarks with Emacs Helm interface") (description "Display firefox bookmarks with Emacs Helm interface")
(license license:gpl3+)))) (license license:gpl3+))))
(define-public emacs-interactive-align
(package
(name "emacs-interactive-align")
(version "0.1.0")
(source
(origin
(method url-fetch)
(uri (string-append "https://github.com/mkcms/interactive-align/"
"archive/" "v" version ".tar.gz"))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32
"0sibpgb4lp6yy3pziak8f3hz4b28yj0dqy2nzh51z3d0b63h528m"))))
(build-system emacs-build-system)
(home-page "https://github.com/mkcms/interactive-align/")
(synopsis "Interactive align-regexp command in Emacs")
(description "Interactive align-regexp command in Emacs")
(license license:gpl3+)))