summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gnu/packages/emacs-xyz.scm48
1 files changed, 31 insertions, 17 deletions
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 752a8110431..3e3017bb56b 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -4329,25 +4329,39 @@ perform static analysis of Perl code.")
4329 (license license:gpl3+))) 4329 (license license:gpl3+)))
4330 4330
4331(define-public emacs-flymake-flycheck 4331(define-public emacs-flymake-flycheck
4332 (package 4332 (let ((commit "cbc0fc81bf369b36fe29a49d9e24708027f6da38")
4333 (name "emacs-flymake-flycheck") 4333 (revision "0"))
4334 (version "20210404.2128") 4334 (package
4335 (source 4335 (name "emacs-flymake-flycheck")
4336 (origin 4336 (version (git-version "0.2" revision commit))
4337 (method url-fetch) 4337 (source
4338 (uri (string-append "https://melpa.org/packages/flymake-flycheck-" 4338 (origin
4339 version ".el")) 4339 (method git-fetch)
4340 (sha256 4340 (uri (git-reference
4341 (base32 "1m59ahd5gjlfwf328labwdlpcxh8ywywkwgfrlsy5jyxfc9ss4nv")))) 4341 (url "https://github.com/purcell/flymake-flycheck")
4342 (build-system emacs-build-system) 4342 (commit commit)))
4343 (propagated-inputs (list emacs-flycheck)) 4343 (file-name (git-file-name name version))
4344 (home-page "https://github.com/purcell/flymake-flycheck") 4344 (sha256
4345 (synopsis "Use Flycheck checkers as Flymake backends") 4345 (base32 "0fda1n8hhklbq6p1s2dlvgc9xd0qy7qzb8yvxq89idx1irjx0785"))))
4346 (description 4346 (build-system emacs-build-system)
4347 "This package provides support for running any Flycheck checker as a 4347 (arguments
4348 (list
4349 #:tests? #f)) ; There is only a lint-check
4350 (propagated-inputs
4351 (list emacs-flycheck))
4352 (home-page "https://github.com/purcell/flymake-flycheck")
4353 (synopsis "Use Flycheck checkers as Flymake backends")
4354 (description
4355 "This package provides support for running any Flycheck checker as a
4348Flymake diagnostic backend. The effect is that Flymake will control when the 4356Flymake diagnostic backend. The effect is that Flymake will control when the
4349checker runs, and Flymake will receive its errors.") 4357checker runs, and Flymake will receive its errors.")
4350 (license license:gpl3+))) 4358 (license license:gpl3+))))
4359
4360(define-public emacs-flymake-flycheck-superseded-version
4361 (package
4362 (inherit emacs-flymake-flycheck)
4363 (version "20210404.2128")
4364 (properties (list (cons 'superseded emacs-flymake-flycheck)))))
4351 4365
4352(define-public emacs-flymake-quickdef 4366(define-public emacs-flymake-quickdef
4353 ;; This particular commit includes bug fixes on top of 1.0.0 release. 4367 ;; This particular commit includes bug fixes on top of 1.0.0 release.