gnu: Add emacs-flycheck-rust.
* gnu/packages/emacs-xyz.scm (emacs-flycheck-rust): New variable.
This commit is contained in:
parent
0ad6ecb84b
commit
5199be620f
1 changed files with 26 additions and 0 deletions
|
@ -3416,6 +3416,32 @@ It also provides an easy way to find synonyms and antonyms for a given
|
||||||
word (to avoid repetitions for example).")
|
word (to avoid repetitions for example).")
|
||||||
(license license:gpl3+)))
|
(license license:gpl3+)))
|
||||||
|
|
||||||
|
(define-public emacs-flycheck-rust
|
||||||
|
(package
|
||||||
|
(name "emacs-flycheck-rust")
|
||||||
|
(version "1.1")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri
|
||||||
|
(git-reference
|
||||||
|
(url "https://github.com/flycheck/flycheck-rust")
|
||||||
|
(commit version)))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32 "1fh6j5w2387nh2fwwjphkhq17cgj5m2q5k0fhidvgc2w65lzbr1r"))))
|
||||||
|
(propagated-inputs
|
||||||
|
`(("emacs-dash" ,emacs-dash)
|
||||||
|
("emacs-flycheck" ,emacs-flycheck)
|
||||||
|
("emacs-let-alist" ,emacs-let-alist)))
|
||||||
|
(build-system emacs-build-system)
|
||||||
|
(home-page "https://github.com/flycheck/flycheck-rust")
|
||||||
|
(synopsis "Rust/Cargo support for Flycheck")
|
||||||
|
(description
|
||||||
|
"This Flycheck extension configures Flycheck automatically for
|
||||||
|
the current Cargo project.")
|
||||||
|
(license license:gpl3+)))
|
||||||
|
|
||||||
(define-public emacs-elisp-demos
|
(define-public emacs-elisp-demos
|
||||||
(package
|
(package
|
||||||
(name "emacs-elisp-demos")
|
(name "emacs-elisp-demos")
|
||||||
|
|
Reference in a new issue