gnu: Add emacs-web-beautify.

* gnu/packages/emacs.scm (emacs-web-beautify): New public variable.
master
Oleg Pykhalov 2018-05-02 19:03:36 +03:00
parent 4cdfc9ef94
commit 8aab3d0611
No known key found for this signature in database
GPG Key ID: 7246E11C69B79569
1 changed files with 20 additions and 0 deletions

View File

@ -9044,3 +9044,23 @@ documentation.")
(synopsis "Major mode for Hylang")
(description "This package provides a major mode for Hylang.")
(license license:gpl3+)))
(define-public emacs-web-beautify
(package
(name "emacs-web-beautify")
(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"))
(sha256
(base32
"1j57hwid74id4swkx2g0iljfawx0k9c7qjrwqc0mv657x9p78hcs"))))
(build-system emacs-build-system)
(home-page "https://github.com/yasuyk/web-beautify")
(synopsis "Format HTML, CSS and JavaScript, JSON")
(description "This package provides an Emacs functions to format HTML,
CSS, JavaScript, JSON.")
(license license:gpl3+)))