gnu: Add emacs-tiny.
* gnu/packages/emacs.scm (emacs-tiny): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
c4d4a77923
commit
6325309898
|
@ -5512,3 +5512,24 @@ Idris.")
|
||||||
github/gitlab (or bitbucket) by calling @code{browse-at-remote} command.
|
github/gitlab (or bitbucket) by calling @code{browse-at-remote} command.
|
||||||
It supports dired buffers and opens them in tree mode at destination.")
|
It supports dired buffers and opens them in tree mode at destination.")
|
||||||
(license license:gpl3+))))
|
(license license:gpl3+))))
|
||||||
|
|
||||||
|
(define-public emacs-tiny
|
||||||
|
(package
|
||||||
|
(name "emacs-tiny")
|
||||||
|
(version "0.1.1")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (string-append "http://elpa.gnu.org/packages/tiny-" version ".tar"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"1nhg8375qdn457wj0xmfaj72s87xbabk2w1nl6q7rjvwxv08yyn7"))))
|
||||||
|
(build-system emacs-build-system)
|
||||||
|
(home-page "https://github.com/abo-abo/tiny")
|
||||||
|
(synopsis "Quickly generate linear ranges in Emacs")
|
||||||
|
(description
|
||||||
|
"The main command of the @code{tiny} extension for Emacs is @code{tiny-expand}.
|
||||||
|
It iss meant to quickly generate linear ranges, e.g. 5, 6, 7, 8. Some elisp
|
||||||
|
proficiency is an advantage, since you can transform your numeric range with
|
||||||
|
an elisp expression.")
|
||||||
|
(license license:gpl3+)))
|
||||||
|
|
Loading…
Reference in New Issue