mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-02-01 07:16:39 +01:00
gnu: Add emacs-elisp-slime-nav.
* gnu/packages/emacs.scm (emacs-elisp-slime-nav): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
479c0e3f60
commit
c51e592d6c
1 changed files with 22 additions and 0 deletions
|
@ -7932,3 +7932,25 @@ (define-public emacs-epkg
|
||||||
You could get a Epkg package list by invoking @code{epkg-list-packages} in
|
You could get a Epkg package list by invoking @code{epkg-list-packages} in
|
||||||
Emacs.")
|
Emacs.")
|
||||||
(license license:gpl3+))))
|
(license license:gpl3+))))
|
||||||
|
|
||||||
|
(define-public emacs-elisp-slime-nav
|
||||||
|
(package
|
||||||
|
(name "emacs-elisp-slime-nav")
|
||||||
|
(version "0.9")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (string-append "https://github.com/purcell/elisp-slime-nav/archive/"
|
||||||
|
version ".tar.gz"))
|
||||||
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"1vq7ym1q47p97gxrv45c9gm96d23xbp237vkmakikj6grngxjfb2"))))
|
||||||
|
(build-system emacs-build-system)
|
||||||
|
(home-page "https://github.com/purcell/elisp-slime-nav")
|
||||||
|
(synopsis "Make @code{M-.} and @code{M-,} work for elisp like they do in SLIME")
|
||||||
|
(description
|
||||||
|
"This package provides SLIME's convenient @code{M-.}and @code{M-,} navigation
|
||||||
|
in @code{emacs-lisp-mode}, together with an elisp equivalent of
|
||||||
|
@code{slime-describe-symbol}.")
|
||||||
|
(license license:gpl3+)))
|
||||||
|
|
Loading…
Reference in a new issue