diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-04-08 23:42:47 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-04-10 20:54:21 +0200 |
commit | 8e65ada235d4e77562169f42405cb62a5d4dabc1 (patch) | |
tree | f5158fc84ecad4502ccf0b2d401bb0cb85751138 /gnu | |
parent | 5a6e6f5df2f8ed0a40ae03b3a3b6c35c747265a2 (diff) | |
download | guix-8e65ada235d4e77562169f42405cb62a5d4dabc1.tar guix-8e65ada235d4e77562169f42405cb62a5d4dabc1.tar.gz |
gnu: emacs-helm-mu: Don't use unstable tarball.
* gnu/packages/emacs-xyz.scm (emacs-helm-mu)[source]: Use GIT-FETCH and
GIT-FILE-NAME.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/emacs-xyz.scm | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index f1da905998..10aa897f66 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -12146,14 +12146,12 @@ projects unrelated to current-buffer. (version (git-version "20180513" "1" commit)) (source (origin - (method url-fetch) - (uri (string-append - "https://github.com/emacs-helm/helm-mu/archive/" - commit - ".tar.gz")) + (method git-fetch) + (uri (git-reference + (url "https://github.com/emacs-helm/helm-mu.git") + (commit commit))) (sha256 - (base32 - "0qm4xi3i957scm50nar398pv4x8y03si10l77jb9ckjaviyq2hj9")))) + (base32 "1lh0ahxdc5b2z18m9p30gwg8sbg33sjwkjr38p7h5xsm5fm7i0fz")))) (build-system emacs-build-system) (propagated-inputs `(("emacs-helm" ,emacs-helm) |