gnu: Add emacs-flymake-kondor.

* gnu/packages/emacs-xyz.scm (emacs-flymake-kondor): New variable.

Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
This commit is contained in:
Alexandr Vityazev 2021-06-05 14:25:30 +02:00 committed by Nicolas Goaziou
parent 00f8451ea1
commit 087fbcfe48
No known key found for this signature in database
GPG key ID: DA00B4F048E92F2D

View file

@ -1528,6 +1528,27 @@ (define-public emacs-flymake-quickdef
boilerplate code from defining new Flymake backend functions.")
(license license:gpl3+))))
(define-public emacs-flymake-kondor
(package
(name "emacs-flymake-kondor")
(version "0.0.3")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/turbo-cafe/flymake-kondor")
(commit version)))
(file-name (git-file-name name version))
(sha256
(base32 "0h8dqk35r10pxx2w4swb3kij4y2vi17j9wfk978x8lf0wd3h3hsy"))))
(build-system emacs-build-system)
(propagated-inputs
`(("emacs-flymake-quickdef" ,emacs-flymake-quickdef)))
(home-page "https://github.com/turbo-cafe/flymake-kondor")
(synopsis "Linter with clj-kondo")
(description "This package adds Clojure syntax checker clj-kondo.")
(license license:gpl3+)))
(define-public emacs-flymake-shellcheck
;; No tag, version grabbed from source .el file.
(let ((commit "ac534e9ef15c82ac86ae65fe5004d29dbc8c92c7")