diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-04-05 04:15:21 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-04-10 20:54:03 +0200 |
commit | 5fe2114956637ca4796cdbc4f8937166f905f209 (patch) | |
tree | e54707fdf7042c1de3eae2dadd5aef0d89c5e89f | |
parent | 9273ae24c29b60a974cbdfa0cff40803d403eb16 (diff) | |
download | guix-5fe2114956637ca4796cdbc4f8937166f905f209.tar.gz guix-5fe2114956637ca4796cdbc4f8937166f905f209.zip |
gnu: emacs-avy: Don't use unstable tarball.
* gnu/packages/emacs-xyz.scm (emacs-avy)[source]: Use GIT-FETCH and
GIT-FILE-NAME.
-rw-r--r-- | gnu/packages/emacs-xyz.scm | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index a568f3ae35..bd4791a869 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -4198,13 +4198,13 @@ show icons as well.") (version "0.4.0") (source (origin - (method url-fetch) - (uri (string-append "https://github.com/abo-abo/avy/archive/" - version ".tar.gz")) - (file-name (string-append name "-" version ".tar.gz")) + (method git-fetch) + (uri (git-reference + (url "https://github.com/abo-abo/avy.git") + (commit version))) + (file-name (git-file-name name version)) (sha256 - (base32 - "1wdrq512h25ymzjbf2kbsdymvd2ryfwzb6bh5bc3yv7q203im796")))) + (base32 "0rq9ab264565z83cly743nbhrd9m967apmnlhqr1gy8dm4hcy7nm")))) (build-system emacs-build-system) (home-page "https://github.com/abo-abo/avy") (synopsis "Tree-based completion for Emacs") |