guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

83/88: gnu: Add emacs-slime-company.


From: Oleg Pykhalov
Subject: 83/88: gnu: Add emacs-slime-company.
Date: Wed, 2 May 2018 13:21:19 -0400 (EDT)

wigust pushed a commit to branch master
in repository guix.

commit 37fa904f0b00eae091750e8fdb92d5aec3013256
Author: Oleg Pykhalov <address@hidden>
Date:   Wed May 2 19:14:13 2018 +0300

    gnu: Add emacs-slime-company.
    
    * gnu/packages/emacs.scm (emacs-slime-company): New public variable.
---
 gnu/packages/emacs.scm | 25 +++++++++++++++++++++++++
 1 file changed, 25 insertions(+)

diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm
index d71ef1f..b294a1b 100644
--- a/gnu/packages/emacs.scm
+++ b/gnu/packages/emacs.scm
@@ -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
address@hidden which supports the normal and the fuzzy completion
+modes of SLIME.")
+    (license license:gpl3+)))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]