gnu: Add emacs-suggest.

* gnu/packages/emacs.scm (emacs-suggest): New public variable.
This commit is contained in:
Oleg Pykhalov 2018-05-02 19:06:08 +03:00
parent 1024daddd8
commit 0bc5a32a2d
No known key found for this signature in database
GPG key ID: 7246E11C69B79569

View file

@ -9368,3 +9368,29 @@ (define-public emacs-logview
(synopsis "Emacs mode for viewing log files")
(description "@code{logview} provides an Emacs mode to view log files.")
(license license:gpl3+)))
(define-public emacs-suggest
(package
(name "emacs-suggest")
(version "0.4")
(source
(origin
(method url-fetch)
(uri (string-append "https://github.com/Wilfred/suggest.el/archive/"
version ".tar.gz"))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32
"1760fm3j19w8xxcawq6s859h86q1rdg69pg9yz48n76kwfk3vlgp"))))
(build-system emacs-build-system)
(propagated-inputs
`(("emacs-loop" ,emacs-loop)
("emacs-dash" ,emacs-dash)
("emacs-s" ,emacs-s)
("emacs-f" ,emacs-f)))
(home-page "https://github.com/Wilfred/suggest.el")
(synopsis "Suggest Elisp functions that give the output requested")
(description "Suggest.el will find functions that give the output
requested. It's a great way of exploring list, string and arithmetic
functions.")
(license license:gpl3+)))