diff options
author | Brian Leung <leungbk@mailfence.com> | 2019-09-25 21:08:54 +0200 |
---|---|---|
committer | Brian Leung <leungbk@mailfence.com> | 2019-09-26 06:47:38 +0200 |
commit | 595c7c339ce6c77534089d2f020b8113d9df2fd7 (patch) | |
tree | 8ffbf4ca9c8f769b23c1f601742423035814a61d /gnu | |
parent | fbbdce47e28a8723f08c1f224d06b0e55bbce75d (diff) | |
download | guix-595c7c339ce6c77534089d2f020b8113d9df2fd7.tar guix-595c7c339ce6c77534089d2f020b8113d9df2fd7.tar.gz |
gnu: emacs-web-mode: Don't use unstable tarball.
* gnu/packages/emacs-xyz.scm (emacs-web-mode)[source]: Use GIT-FETCH and GIT-FILE-NAME.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/emacs-xyz.scm | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index c0a16ee87f..1537cf1ce2 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -6411,13 +6411,14 @@ via @code{gitlab-ci-lint}.") (name "emacs-web-mode") (version "16") (source (origin - (method url-fetch) - (uri (string-append "https://raw.githubusercontent.com/fxbois" - "/web-mode/v" version "/web-mode.el")) - (file-name (string-append "web-mode-" version ".el")) + (method git-fetch) + (uri (git-reference + (url "https://github.com/fxbois/web-mode.git") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) (sha256 (base32 - "1hs5w7kdvcyn4ihyw1kfjg48djn5p7lz4rlbhzzdqv1g56xqx3gw")))) + "17dw6a8d0p304f2sa4f9zwd8r48w2wbkc3fvbmxwlg4w12h7cwf0")))) (build-system emacs-build-system) (synopsis "Major mode for editing web templates") (description "Web-mode is an Emacs major mode for editing web templates |