gnu: Add emacs-slime-company.

* gnu/packages/emacs.scm (emacs-slime-company): New public variable.
master
Oleg Pykhalov 2018-05-02 19:14:13 +03:00
parent 99092bd900
commit 37fa904f0b
No known key found for this signature in database
GPG Key ID: 7246E11C69B79569
1 changed files with 25 additions and 0 deletions

View File

@ -10102,3 +10102,28 @@ Emacs minor mode to escape sequences in code.")
(description "This package provides an extensible Emacs dashboard, with
sections for bookmarks, projectil projects, org-agenda and more. ")
(license license:gpl3+)))
(define-public emacs-slime-company
(package
(name "emacs-slime-company")
(version "1.1")
(source
(origin
(method url-fetch)
(uri (string-append "https://github.com/anwyn/slime-company/archive/"
"v" version ".tar.gz"))
(sha256
(base32
"1myl79pxj501xfr5qc5a24qddsn2l5iaamg7rf7fpny7mr9v70ar"))
(file-name (string-append name "-" version ".tar.gz"))))
(build-system emacs-build-system)
(propagated-inputs
`(("emacs-slime" ,emacs-slime)
("emacs-company" ,emacs-company)))
(home-page "https://company-mode.github.io")
(synopsis "SLIME completion backend for @code{company-mode}")
(description
"This is a backend implementation for the completion package
@code{company-mode} which supports the normal and the fuzzy completion
modes of SLIME.")
(license license:gpl3+)))