gnu: Add emacs-flymake.

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

Change-Id: I8dc5cd880301dfbf8492e7b998fb80f786dd27d8
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
This commit is contained in:
Javier Olaechea 2024-09-17 10:17:17 -05:00 committed by Nicolas Goaziou
parent 97f6451a67
commit bacd7d9dde
No known key found for this signature in database
GPG key ID: DA00B4F048E92F2D

View file

@ -1440,6 +1440,26 @@ face properties and allows configuration of faces and colors.")
some utility functions, and commands using that infrastructure.")
(license license:gpl3+)))
(define-public emacs-flymake
(package
(name "emacs-flymake")
(version "1.3.7")
(source
(origin
(method url-fetch)
(uri (string-append "https://elpa.gnu.org/packages/"
"flymake-" version ".tar"))
(sha256
(base32 "15ikzdqyh77cgx94jaigfrrzfvwvpca8s2120gi82i9aaiypr7jl"))))
(build-system emacs-build-system)
(propagated-inputs (list emacs-eldoc emacs-project))
(home-page "https://elpa.gnu.org/packages/flymake.html")
(synopsis "Universal on-the-fly syntax checker")
(description
"Flymake collects diagnostic information for multiple sources,
called backends, and visually annotates the relevant portions in the buffer.")
(license license:gpl3+)))
;; Package has no release. Version is extracted from "Version:" keyword in
;; main file.
(define-public emacs-project-mode-line-tag