gnu: emacs-emmet-mode: Don't use unstable tarball.

* gnu/packages/emacs-xyz.scm (emacs-emmet-mode)[source]: Download using
git-fetch.
master
Efraim Flashner 2019-03-27 23:01:49 +02:00
parent 0f8ff55513
commit d8de2c01ff
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 8 additions and 7 deletions

View File

@ -8729,13 +8729,14 @@ Anzu.zim.")
(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")