gnu: emacs-evil-quickscope: Don't use unstable tarball.

* gnu/packages/emacs-xyz.scm (emacs-evil-quickscope)[source]: Use GIT-FETCH and
GIT-FILE-NAME.
This commit is contained in:
Tobias Geerinckx-Rice 2019-04-08 23:33:02 +02:00
parent 57a07f9cb6
commit 3b5d4f72ca
No known key found for this signature in database
GPG key ID: 0DB0FF884F556D79

View file

@ -8360,13 +8360,13 @@ (define-public emacs-evil-quickscope
(version "0.1.4")
(source
(origin
(method url-fetch)
(uri (string-append "https://github.com/blorbx/evil-quickscope/archive/v"
version ".tar.gz"))
(file-name (string-append name "-" version ".tar.gz"))
(method git-fetch)
(uri (git-reference
(url "https://github.com/blorbx/evil-quickscope.git")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32
"1r26a412mmar7vbf89zcifswiwpdg30mjzj32xdyqss57aqi83ma"))))
(base32 "1ja9ggj70wf0nmma4xnc1zdzg2crq9h1cv3cj7cgwjmllflgkfq7"))))
(build-system emacs-build-system)
(propagated-inputs
`(("emacs-evil" ,emacs-evil)))