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.
This commit is contained in:
parent
fbbdce47e2
commit
595c7c339c
|
@ -6411,13 +6411,14 @@ via @code{gitlab-ci-lint}.")
|
||||||
(name "emacs-web-mode")
|
(name "emacs-web-mode")
|
||||||
(version "16")
|
(version "16")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method git-fetch)
|
||||||
(uri (string-append "https://raw.githubusercontent.com/fxbois"
|
(uri (git-reference
|
||||||
"/web-mode/v" version "/web-mode.el"))
|
(url "https://github.com/fxbois/web-mode.git")
|
||||||
(file-name (string-append "web-mode-" version ".el"))
|
(commit (string-append "v" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1hs5w7kdvcyn4ihyw1kfjg48djn5p7lz4rlbhzzdqv1g56xqx3gw"))))
|
"17dw6a8d0p304f2sa4f9zwd8r48w2wbkc3fvbmxwlg4w12h7cwf0"))))
|
||||||
(build-system emacs-build-system)
|
(build-system emacs-build-system)
|
||||||
(synopsis "Major mode for editing web templates")
|
(synopsis "Major mode for editing web templates")
|
||||||
(description "Web-mode is an Emacs major mode for editing web templates
|
(description "Web-mode is an Emacs major mode for editing web templates
|
||||||
|
|
Loading…
Reference in New Issue