mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: Add emacs-loop.
* gnu/packages/emacs.scm (emacs-loop): New public variable.
This commit is contained in:
parent
be3cf803da
commit
b836c6500a
1 changed files with 21 additions and 0 deletions
|
@ -8613,3 +8613,24 @@ (define-public emacs-itail
|
|||
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+)))
|
||||
|
|
Loading…
Reference in a new issue