diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-04-08 23:27:37 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-04-10 20:54:10 +0200 |
commit | c6c677be6c85efded42ecf43865225fd431ec73f (patch) | |
tree | 8f02026a02586fd4356de219f33286ec0710a87b /gnu | |
parent | 6c960872086bbed20b80a1dfa4f31cd108a168fe (diff) | |
download | guix-c6c677be6c85efded42ecf43865225fd431ec73f.tar.gz |
gnu: emacs-commander: Don't use unstable tarball.
* gnu/packages/emacs-xyz.scm (emacs-commander)[source]: Use GIT-FETCH and GIT-FILE-NAME.
Diffstat (limited to 'gnu')
-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 565ffa3562..998de5dba6 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -7268,13 +7268,13 @@ as bold, underscore or italic.") (version "0.7.0") (source (origin - (method url-fetch) - (uri (string-append "https://github.com/rejeep/commander.el/archive/v" - version ".tar.gz")) - (file-name (string-append name "-" version ".tar.gz")) + (method git-fetch) + (uri (git-reference + (url "https://github.com/rejeep/commander.el.git") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) (sha256 - (base32 - "196s2i15z7gwxa97l1wkxvjnfmj5n38wwm6d3g4zz15l2vqggc2y")))) + (base32 "1j6hhyzww7wfwk6bllbb5mk4hw4qs8hsgfbfdifsam9c6i4spm45")))) (build-system emacs-build-system) (propagated-inputs `(("emacs-dash" ,emacs-dash) |