aboutsummaryrefslogtreecommitdiffstats
path: root/oni/packages/emacs.scm
diff options
context:
space:
mode:
Diffstat (limited to 'oni/packages/emacs.scm')
-rw-r--r--oni/packages/emacs.scm33
1 files changed, 0 insertions, 33 deletions
diff --git a/oni/packages/emacs.scm b/oni/packages/emacs.scm
index 9ff5646..3d6d721 100644
--- a/oni/packages/emacs.scm
+++ b/oni/packages/emacs.scm
@@ -642,36 +642,3 @@ faster and I highly recommend its usage if your Emacs version permits.")
(description "My cat is named Yoshi and I was just working on a random new theme, which was
new-theme for a while. I couldn't think of a name so I named it after him.")
(license license:gpl3+))))
-
-(define-public oni-emacs-company
- (package
- (name "oni-emacs-company")
- (version "0.10.2")
- (source
- (origin
- (method url-fetch)
- (uri (string-append "https://elpa.gnu.org/packages/"
- "company-" version ".tar"))
- (sha256
- (base32 "0j2qrnx2w2al4f2n37b89q0pkabh5ccv00gsknvgaylhy0za5gq9"))))
- (build-system emacs-build-system)
- (arguments
- (list
- #:include #~(cons* "icons/" %default-include)
- #:phases
- #~(modify-phases %standard-phases
- (add-after 'move-doc 'install-doc-images
- (lambda* (#:key outputs #:allow-other-keys)
- (let ((images (find-files "./images/small/" ".*\\.png$")))
- (for-each (lambda (image)
- (install-file image
- (string-append #$output "/share/info/images/small")))
- images)))))))
- (home-page "https://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+)))