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") (version "0.1.4")
(source (source
(origin (origin
(method url-fetch) (method git-fetch)
(uri (string-append "https://github.com/blorbx/evil-quickscope/archive/v" (uri (git-reference
version ".tar.gz")) (url "https://github.com/blorbx/evil-quickscope.git")
(file-name (string-append name "-" version ".tar.gz")) (commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256 (sha256
(base32 (base32 "1ja9ggj70wf0nmma4xnc1zdzg2crq9h1cv3cj7cgwjmllflgkfq7"))))
"1r26a412mmar7vbf89zcifswiwpdg30mjzj32xdyqss57aqi83ma"))))
(build-system emacs-build-system) (build-system emacs-build-system)
(propagated-inputs (propagated-inputs
`(("emacs-evil" ,emacs-evil))) `(("emacs-evil" ,emacs-evil)))