gnu: Add emacs-reformatter.
* gnu/packages/emacs-xyz.scm (emacs-reformatter): New variable. Signed-off-by: Ricardo Wurmus <rekado@elephly.net>
This commit is contained in:
parent
b0eaead510
commit
8ae48674ce
1 changed files with 23 additions and 0 deletions
|
@ -804,6 +804,29 @@ (define-public emacs-xr
|
||||||
@code{skip-chars-backward}.")
|
@code{skip-chars-backward}.")
|
||||||
(license license:gpl3+)))
|
(license license:gpl3+)))
|
||||||
|
|
||||||
|
(define-public emacs-reformatter
|
||||||
|
(package
|
||||||
|
(name "emacs-reformatter")
|
||||||
|
(version "0.4")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/purcell/reformatter.el.git")
|
||||||
|
(commit version)))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"0hhy6x1bkwlhdlarsgm06g3am4yh02yqv8qs34szpzgy53x84qah"))))
|
||||||
|
(build-system emacs-build-system)
|
||||||
|
(home-page "https://github.com/purcell/reformatter.el")
|
||||||
|
(synopsis "Define commands which run reformatters on the current buffer")
|
||||||
|
(description
|
||||||
|
"This library lets elisp authors easily define an idiomatic command to
|
||||||
|
reformat the current buffer using a command-line program, together with an
|
||||||
|
optional minor mode which can apply this command automatically on save.")
|
||||||
|
(license license:gpl3+)))
|
||||||
|
|
||||||
(define-public emacs-relint
|
(define-public emacs-relint
|
||||||
(package
|
(package
|
||||||
(name "emacs-relint")
|
(name "emacs-relint")
|
||||||
|
|
Loading…
Reference in a new issue