aboutsummaryrefslogtreecommitdiffstats
path: root/oni/packages
diff options
context:
space:
mode:
authorGravatar Tom Willemse2024-04-07 00:15:28 -0700
committerGravatar Tom Willemse2024-04-07 00:16:15 -0700
commit5225562fe08d99306596efc2c07d526e90bc78bb (patch)
treea3340b7e7b540c08cbf34eb84fd25f87b600d2a8 /oni/packages
parent92113db65e768ddd92a877add8b2956e8cf9b983 (diff)
downloadnew-dotfiles-5225562fe08d99306596efc2c07d526e90bc78bb.tar.gz
new-dotfiles-5225562fe08d99306596efc2c07d526e90bc78bb.zip
Remove custom company package
The changes I made to the package have been accepted upstream, so I don't need to maintain my own anymore. Commit: https://git.savannah.gnu.org/cgit/guix.git/commit/?id=55c94d68df Discussion: https://issues.guix.gnu.org/68839
Diffstat (limited to 'oni/packages')
-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+)))