mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 06:18:07 -05:00
gnu: Add emacs-suggest.
* gnu/packages/emacs.scm (emacs-suggest): New public variable.
This commit is contained in:
parent
1024daddd8
commit
0bc5a32a2d
1 changed files with 26 additions and 0 deletions
|
@ -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+)))
|
||||
|
|
Loading…
Reference in a new issue