gnu: emacs-web-beautify: Don't use unstable tarball.

* gnu/packages/emacs-xyz.scm (emacs-web-beautify)[source]: Use GIT-FETCH and
GIT-FILE-NAME.
master
Tobias Geerinckx-Rice 2019-04-08 23:38:18 +02:00
parent 2880da9ea5
commit 5cbecbcf19
No known key found for this signature in database
GPG Key ID: 0DB0FF884F556D79
1 changed files with 6 additions and 6 deletions

View File

@ -10194,13 +10194,13 @@ documentation.")
(version "0.3.2")
(source
(origin
(method url-fetch)
(uri (string-append "https://github.com/yasuyk/web-beautify/archive/"
version ".tar.gz"))
(file-name (string-append name "-" version ".tar.gz"))
(method git-fetch)
(uri (git-reference
(url "https://github.com/yasuyk/web-beautify.git")
(commit version)))
(file-name (git-file-name name version))
(sha256
(base32
"1j57hwid74id4swkx2g0iljfawx0k9c7qjrwqc0mv657x9p78hcs"))))
(base32 "0vms7zz3ym53wf1zdrkbf2ky2xjr1v134ngsd0jr8azyi8siw84d"))))
(build-system emacs-build-system)
(home-page "https://github.com/yasuyk/web-beautify")
(synopsis "Format HTML, CSS and JavaScript, JSON")