gnu: Add emacs-company.

* gnu/packages/emacs.scm (emacs-company): New variable.
This commit is contained in:
Ricardo Wurmus 2016-06-17 08:11:49 +02:00
parent 65924b10bc
commit d1dbeddd55
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC
1 changed files with 23 additions and 0 deletions

View File

@ -1333,6 +1333,29 @@ view the build status of those servers' build jobs, and possibly to trigger
build jobs.")
(license license:gpl3+)))
(define-public emacs-company
(package
(name "emacs-company")
(version "0.8.12")
(source
(origin
(method url-fetch)
(uri (string-append "https://github.com/company-mode/company-mode/archive/"
version ".tar.gz"))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32
"1vwmbqm7h4lrszv2qxy6fqzznm9raigi84cadx982c9m7shp0zzz"))))
(build-system emacs-build-system)
(home-page "http://company-mode.github.io/")
(synopsis "Modular text completion framework")
(description
"Company is a modular completion mechanism. Modules for retrieving
completion candidates are called back-ends, modules for displaying them are
front-ends. Company comes with many back-ends, e.g. @code{company-elisp}.
These are distributed in separate files and can be used individually.")
(license license:gpl3+)))
(define-public typo
(package
(name "emacs-typo")