diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-04-08 23:37:08 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-04-10 20:54:18 +0200 |
commit | cbd18c5ca7087ef76e305091b797cdf9b23ec897 (patch) | |
tree | 09f152bd0559cafce78fc1b578a90d5d119620ee | |
parent | 1a9a7ad59a9325eabbc88b1d47ef5b9824a3b9b3 (diff) | |
download | guix-cbd18c5ca7087ef76e305091b797cdf9b23ec897.tar.gz |
gnu: emacs-elisp-refs: Don't use unstable tarball.
* gnu/packages/emacs-xyz.scm (emacs-elisp-refs)[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 8ea65b484b..5dca5d1db7 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -9757,13 +9757,13 @@ continue.") (version "1.3") (source (origin - (method url-fetch) - (uri (string-append "https://github.com/Wilfred/elisp-refs/archive/" - version ".tar.gz")) - (file-name (string-append name "-" version ".tar.gz")) + (method git-fetch) + (uri (git-reference + (url "https://github.com/Wilfred/elisp-refs.git") + (commit version))) + (file-name (git-file-name name version)) (sha256 - (base32 - "02nzcn3v14n7mp7q32j5r4wdlpsw3zixzh6cf0cdyarfir6dly3p")))) + (base32 "0w7k91xf69zc0zkjrw8h8sjdjf9xq9qs5zhvajhd718lzf93564b")))) (build-system emacs-build-system) (propagated-inputs `(("emacs-dash" ,emacs-dash) |