diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-04-08 23:27:16 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-04-10 20:54:10 +0200 |
commit | ee9ee9946f5cfb06b47fa80a925a1cc798c37903 (patch) | |
tree | 0a3c49dea6d9e3685a2d18b0912e71b931b816ba | |
parent | 1f0ea0173d48b34cc82fb13fbee94fe63e9db87d (diff) | |
download | guix-ee9ee9946f5cfb06b47fa80a925a1cc798c37903.tar guix-ee9ee9946f5cfb06b47fa80a925a1cc798c37903.tar.gz |
gnu: emacs-evil-commentary: Don't use unstable tarball.
* gnu/packages/emacs-xyz.scm (emacs-evil-commentary)[source]: Use GIT-FETCH and
GIT-FILE-NAME.
-rw-r--r-- | gnu/packages/emacs-xyz.scm | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index d7c27bd5b0..c7356ea9d6 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -7216,14 +7216,13 @@ addition of surrounding pairs, such as parantheses and quotes, in evil mode.") (version "2.1.1") (source (origin - (method url-fetch) - (uri (string-append - "https://github.com/linktohack/evil-commentary/archive/v" - version ".tar.gz")) - (file-name (string-append name "-" version ".tar.gz")) + (method git-fetch) + (uri (git-reference + (url "https://github.com/linktohack/evil-commentary.git") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) (sha256 - (base32 - "1jdya0i921nwskwrzdsj0vrr3m7gm49dy6f6pk9p5nxaarfxk230")))) + (base32 "0zjs9zyqfygnpxapvf0ymmiid40i06cxbhjzd81zw33nafgkf6r4")))) (build-system emacs-build-system) (propagated-inputs `(("emacs-evil" ,emacs-evil))) |