diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-04-08 23:38:18 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-04-10 20:54:19 +0200 |
commit | 5cbecbcf19c4dfb30405eeea8f24d6342f5d4f49 (patch) | |
tree | e5453d79d4d04947cf5a774e584cb0c66fa531ef /gnu/packages/emacs-xyz.scm | |
parent | 2880da9ea5b43adecc94904ac1ac645d439ab8ac (diff) | |
download | guix-5cbecbcf19c4dfb30405eeea8f24d6342f5d4f49.tar.gz guix-5cbecbcf19c4dfb30405eeea8f24d6342f5d4f49.zip |
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.
Diffstat (limited to 'gnu/packages/emacs-xyz.scm')
-rw-r--r-- | gnu/packages/emacs-xyz.scm | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 0208d1a504..28ce6dce4a 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -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") |