diff options
author | Xinglu Chen <public@yoctocell.xyz> | 2021-04-30 16:37:54 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2021-04-30 16:47:31 +0200 |
commit | 953e7d84ce4a8534cf9dbf4e10a6fc9d0e2527c8 (patch) | |
tree | 5af48d4ce9a760bb12572317b326a99cb86ebbde /gnu | |
parent | ee86a035c79b838e3fdabbdb88dc30906a83cc30 (diff) | |
download | guix-953e7d84ce4a8534cf9dbf4e10a6fc9d0e2527c8.tar.gz |
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 <mail@nicolasgoaziou.fr>
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/emacs-xyz.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index b79fb14d77..17a57abd66 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) |