gnu: Add emacs-let-alist.

* gnu/packages/emacs.scm (emacs-let-alist): New public variable.
This commit is contained in:
Oleg Pykhalov 2018-05-02 19:00:46 +03:00
parent 4024607561
commit 15d568330b
No known key found for this signature in database
GPG key ID: 7246E11C69B79569

View file

@ -8741,3 +8741,22 @@ (define-public emacs-m-buffer-el
(description "@code{m-buffer} provides a set of list-orientated functions
for operating over the contents of Emacs buffers.")
(license license:gpl3+)))
(define-public emacs-let-alist
(package
(name "emacs-let-alist")
(version "1.0.5")
(source
(origin
(method url-fetch)
(uri (string-append
"https://elpa.gnu.org/packages/let-alist-" version ".el"))
(sha256
(base32
"0r7b9jni50la1m79kklml11syg8d2fmdlr83pv005sv1wh02jszw"))))
(build-system emacs-build-system)
(home-page "https://elpa.gnu.org/packages/let-alist.html")
(synopsis "Easily let-bind values of an assoc-list by their names")
(description "This package offers a single macro, @code{let-alist}. This
macro takes a first argument (whose value must be an alist) and a body.")
(license license:gpl3+)))