This is an automated email from the git hooks/post-receive script.
ngz pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new 953e7d8 gnu: emacs-xref: Fix ELPA URL.
953e7d8 is described below
commit 953e7d84ce4a8534cf9dbf4e10a6fc9d0e2527c8
Author: Xinglu Chen <[email protected]>
AuthorDate: Fri Apr 30 16:37:54 2021 +0200
gnu: emacs-xref: Fix ELPA URL.
* gnu/packages/emacs-xyz.scm (emacs-xref)[source]: Use “.tar” instead of
“.el”
in the URL.
Signed-off-by: Nicolas Goaziou <[email protected]>
---
gnu/packages/emacs-xyz.scm | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index b79fb14..17a57ab 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -27598,8 +27598,8 @@ work on alists, hash-table and arrays. All functions
are prefixed with
(source
(origin
(method url-fetch)
- (uri (string-append "https://elpa.gnu.org/packages/"
- "xref-" version ".el"))
+ (uri (string-append "https://elpa.gnu.org/packages/xref-"
+ version ".tar"))
(sha256
(base32 "1s7pwk09bry4nqr4bc78a3mbwyrxagai2gpsd49x47czy2x7m3ax"))))
(build-system emacs-build-system)