gnu: Add emacs-loop.

* gnu/packages/emacs.scm (emacs-loop): New public variable.
This commit is contained in:
Oleg Pykhalov 2018-05-02 18:58:43 +03:00
parent be3cf803da
commit b836c6500a
No known key found for this signature in database
GPG Key ID: 7246E11C69B79569
1 changed files with 21 additions and 0 deletions

View File

@ -8613,3 +8613,24 @@ that allows you to filter the tail with unix pipes and highlight the
contents of the tailed file. Works locally or on remote files using
tramp.")
(license license:gpl3+))))
(define-public emacs-loop
(package
(name "emacs-loop")
(version "1.3")
(source
(origin
(method url-fetch)
(uri (string-append "https://github.com/Wilfred/loop.el/archive/"
version ".tar.gz"))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32
"1z3rhh3zyjabz36410yz0lp4a0qwwj0387as662wvx3z9y54jia9"))))
(build-system emacs-build-system)
(home-page "https://github.com/Wilfred/loop.el")
(synopsis "Imperative loop structures for Emacs")
(description "Loop structures familiar to users of other languages. This
library adds a selection of popular loop structures as well as break and
continue.")
(license license:gpl3+)))