gnu: emacs-avy: Don't use unstable tarball.

* gnu/packages/emacs-xyz.scm (emacs-avy)[source]: Use GIT-FETCH and
GIT-FILE-NAME.
This commit is contained in:
Tobias Geerinckx-Rice 2019-04-05 04:15:21 +02:00
parent 9273ae24c2
commit 5fe2114956
No known key found for this signature in database
GPG Key ID: 0DB0FF884F556D79
1 changed files with 6 additions and 6 deletions

View File

@ -4198,13 +4198,13 @@ show icons as well.")
(version "0.4.0") (version "0.4.0")
(source (source
(origin (origin
(method url-fetch) (method git-fetch)
(uri (string-append "https://github.com/abo-abo/avy/archive/" (uri (git-reference
version ".tar.gz")) (url "https://github.com/abo-abo/avy.git")
(file-name (string-append name "-" version ".tar.gz")) (commit version)))
(file-name (git-file-name name version))
(sha256 (sha256
(base32 (base32 "0rq9ab264565z83cly743nbhrd9m967apmnlhqr1gy8dm4hcy7nm"))))
"1wdrq512h25ymzjbf2kbsdymvd2ryfwzb6bh5bc3yv7q203im796"))))
(build-system emacs-build-system) (build-system emacs-build-system)
(home-page "https://github.com/abo-abo/avy") (home-page "https://github.com/abo-abo/avy")
(synopsis "Tree-based completion for Emacs") (synopsis "Tree-based completion for Emacs")