gnu: emacs-elisp-slime-nav: Don't use unstable tarball.

* gnu/packages/emacs-xyz.scm (emacs-elisp-slime-nav)[source]: Use GIT-FETCH and
GIT-FILE-NAME.
This commit is contained in:
Tobias Geerinckx-Rice 2019-04-08 23:35:02 +02:00
parent 98c32a1033
commit 14246b43c5
No known key found for this signature in database
GPG Key ID: 0DB0FF884F556D79
1 changed files with 6 additions and 6 deletions

View File

@ -9120,13 +9120,13 @@ Emacs.")
(version "0.9") (version "0.9")
(source (source
(origin (origin
(method url-fetch) (method git-fetch)
(uri (string-append "https://github.com/purcell/elisp-slime-nav/archive/" (uri (git-reference
version ".tar.gz")) (url "https://github.com/purcell/elisp-slime-nav.git")
(file-name (string-append name "-" version ".tar.gz")) (commit version)))
(file-name (git-file-name name version))
(sha256 (sha256
(base32 (base32 "11vyy0bvzbs1h1kggikrvhd658j7c730w0pdp6qkm60rigvfi1ih"))))
"1vq7ym1q47p97gxrv45c9gm96d23xbp237vkmakikj6grngxjfb2"))))
(build-system emacs-build-system) (build-system emacs-build-system)
(home-page "https://github.com/purcell/elisp-slime-nav") (home-page "https://github.com/purcell/elisp-slime-nav")
(synopsis "Make @code{M-.} and @code{M-,} work for elisp like they do in SLIME") (synopsis "Make @code{M-.} and @code{M-,} work for elisp like they do in SLIME")