mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 05:18:07 -05:00
gnu: emacs-emmet-mode: Don't use unstable tarball.
* gnu/packages/emacs-xyz.scm (emacs-emmet-mode)[source]: Download using git-fetch.
This commit is contained in:
parent
0f8ff55513
commit
d8de2c01ff
1 changed files with 8 additions and 7 deletions
|
@ -8729,13 +8729,14 @@ (define-public emacs-emmet-mode
|
|||
(name "emacs-emmet-mode")
|
||||
(version "1.0.8")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "https://github.com/smihica/emmet-mode"
|
||||
"/archive/" version ".tar.gz"))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"0g3p22yabfcp98cfv9dgl9il2m2pd53isq2q11vb3s7qyn31f7zj"))))
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/smihica/emmet-mode.git")
|
||||
(commit version)))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"1dsa85bk33j90h1ypaz1ylqh9yp2xvlga237h3kwa5y3sb0d5ydi"))))
|
||||
(build-system emacs-build-system)
|
||||
(home-page "https://github.com/smihica/emmet-mode")
|
||||
(synopsis "Unofficial Emmet's support for Emacs")
|
||||
|
|
Loading…
Reference in a new issue