diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-04-05 04:15:05 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-04-10 20:54:03 +0200 |
commit | 9273ae24c29b60a974cbdfa0cff40803d403eb16 (patch) | |
tree | e18df6f168ab71052e81304acbe99e6599e5adc6 | |
parent | 8e71904ad145a107b08ca12c2860d95fd48c6674 (diff) | |
download | guix-9273ae24c29b60a974cbdfa0cff40803d403eb16.tar.gz |
gnu: emacs-ivy-rich: Don't use unstable tarball.
* gnu/packages/emacs-xyz.scm (emacs-ivy-rich)[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 a51b0711fd..a568f3ae35 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -4173,13 +4173,13 @@ use it, call @code{M-x ivy-yasnippet} (but make sure you have enabled (version "0.1.0") (source (origin - (method url-fetch) - (uri (string-append "https://github.com/Yevgnen/ivy-rich/archive/" - version ".tar.gz")) - (file-name (string-append name "-" version ".tar.gz")) + (method git-fetch) + (uri (git-reference + (url "https://github.com/Yevgnen/ivy-rich.git") + (commit version))) + (file-name (git-file-name name version)) (sha256 - (base32 - "14r3mx5rkd4wz0ls5pv5w6c7la3z9iy93d3jfind3xyg4kywy95c")))) + (base32 "0ayf3dwfhafcbqnckm65zy8nc1rv9ji939qfn53wbhxkrgqdicgz")))) (build-system emacs-build-system) (propagated-inputs `(("emacs-ivy" ,emacs-ivy))) |