guix-commits
[Top][All Lists]
Advanced

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

01/01: gnu: Add emacs-helm-slime.


From: Pierre Neidhardt
Subject: 01/01: gnu: Add emacs-helm-slime.
Date: Mon, 5 Nov 2018 07:59:20 -0500 (EST)

ambrevar pushed a commit to branch master
in repository guix.

commit 695db2f98a9099aaea9289f3a34c43e8d120d8b5
Author: Pierre Neidhardt <address@hidden>
Date:   Mon Nov 5 13:58:04 2018 +0100

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

diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm
index d5ad38d..3114a2e 100644
--- a/gnu/packages/emacs.scm
+++ b/gnu/packages/emacs.scm
@@ -12433,3 +12433,33 @@ correctly.")
       (synopsis "Color ANSI codes in the REPL of SLIME")
       (description "Color ANSI codes in the REPL of SLIME")
       (license license:gpl2+))))
+
+(define-public emacs-helm-slime
+  (let ((commit "9980925f3e5f6ac5a30369d2a544e82006a79c76"))
+    (package
+      (name "emacs-helm-slime")
+      (version (git-version "0.0.0" "1" commit))
+      (source (origin
+                (method git-fetch)
+                (uri (git-reference
+                      (url "https://github.com/emacs-helm/helm-slime";)
+                      (commit commit)))
+                (file-name (git-file-name name version))
+                (sha256
+                 (base32
+                  "0xa07gpfkzwn522x9573mq5mfxvbawdgd0m93gqj6w5a14wk8zzh"))))
+      (build-system emacs-build-system)
+      (propagated-inputs
+       `(("emacs-helm" ,emacs-helm)
+         ("emacs-slime" ,emacs-slime)))
+      (home-page "https://github.com/emacs-helm/helm-slime";)
+      (synopsis "Helm for SLIME, the Superior Lisp Interaction Mode for Emacs")
+      (description "Helm-SLIME defines a few new commands:
+
address@hidden
address@hidden helm-slime-complete: Select a symbol from the SLIME completion 
systems.
address@hidden helm-slime-list-connections: Yet another slime-list-connections 
with Helm.
address@hidden: helm-slime-apropos: Yet another slime-apropos with Helm.
address@hidden helm-slime-repl-history: Select an input from the SLIME REPL 
history and insert it.
address@hidden itemize\n")
+      (license license:gpl3+))))



reply via email to

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