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

View file

@ -9835,3 +9835,22 @@ (define-public emacs-helm-firefox
(synopsis "Display firefox bookmarks with Emacs Helm interface")
(description "Display firefox bookmarks with Emacs Helm interface")
(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+)))