gnu: Add emacs-consult-flycheck.
* gnu/packages/emacs-xyz.scm (emacs-consult-flycheck): New variable. Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com>
This commit is contained in:
parent
f88a7d82c7
commit
79af3f8366
1 changed files with 25 additions and 0 deletions
|
@ -11402,6 +11402,31 @@ (define-public emacs-consult-eglot
|
|||
call.")
|
||||
(license license:gpl3+)))
|
||||
|
||||
(define-public emacs-consult-flycheck
|
||||
;; This particular commit introduces bug fixes above latest release.
|
||||
(let ((commit "3f2a7c17cc2fe64e0c07e3bf90e33c885c0d7062")
|
||||
(revision "0"))
|
||||
(package
|
||||
(name "emacs-consult-flycheck")
|
||||
(version (git-version "0.9" revision commit))
|
||||
(source (origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/minad/consult-flycheck")
|
||||
(commit commit)))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"0cvxl6ynbns3wlpzilhg4ldakb91ikpibbr9wpb2wkzbgi5c766c"))))
|
||||
(build-system emacs-build-system)
|
||||
(propagated-inputs (list emacs-consult emacs-flycheck))
|
||||
(home-page "https://github.com/minad/consult-flycheck")
|
||||
(synopsis "Consult integration for Flycheck")
|
||||
(description
|
||||
"This package provides the @code{consult-flycheck} command for Emacs,
|
||||
which integrates @code{Consult} with @code{Flycheck}.")
|
||||
(license license:gpl3+))))
|
||||
|
||||
(define-public emacs-eglot-tempel
|
||||
(let ((commit "e08b203d6a7c495d4b91ed4537506b5f1ea8a84f")
|
||||
(revision "0"))
|
||||
|
|
Loading…
Reference in a new issue