gnu: emacs-suggest: Update to 0.7.
* gnu/packages/emacs-xyz.scm (emacs-suggest): Update to 0.7.master
parent
a922b2aee2
commit
b6180f93bd
|
@ -10161,23 +10161,26 @@ and doesn't require memorisation of commands.
|
||||||
(define-public emacs-suggest
|
(define-public emacs-suggest
|
||||||
(package
|
(package
|
||||||
(name "emacs-suggest")
|
(name "emacs-suggest")
|
||||||
(version "0.4")
|
(version "0.7")
|
||||||
|
(home-page "https://github.com/Wilfred/suggest.el")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method git-fetch)
|
||||||
(uri (string-append "https://github.com/Wilfred/suggest.el/archive/"
|
(uri (git-reference
|
||||||
version ".tar.gz"))
|
(url home-page)
|
||||||
(file-name (string-append name "-" version ".tar.gz"))
|
(commit version)))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1760fm3j19w8xxcawq6s859h86q1rdg69pg9yz48n76kwfk3vlgp"))))
|
"01v8plska5d3g19sb1m4ph1i3ayprfzk8mi6mpabjy6zad397xjl"))))
|
||||||
(build-system emacs-build-system)
|
(build-system emacs-build-system)
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
`(("emacs-loop" ,emacs-loop)
|
`(("emacs-loop" ,emacs-loop)
|
||||||
("emacs-dash" ,emacs-dash)
|
("emacs-dash" ,emacs-dash)
|
||||||
("emacs-s" ,emacs-s)
|
("emacs-s" ,emacs-s)
|
||||||
("emacs-f" ,emacs-f)))
|
("emacs-f" ,emacs-f)
|
||||||
(home-page "https://github.com/Wilfred/suggest.el")
|
("emacs-spinner" ,emacs-spinner)
|
||||||
|
("emacs-shut-up" ,emacs-shut-up)))
|
||||||
(synopsis "Suggest Elisp functions that give the output requested")
|
(synopsis "Suggest Elisp functions that give the output requested")
|
||||||
(description "Suggest.el will find functions that give the output
|
(description "Suggest.el will find functions that give the output
|
||||||
requested. It's a great way of exploring list, string and arithmetic
|
requested. It's a great way of exploring list, string and arithmetic
|
||||||
|
|
Reference in New Issue