From bacd7d9ddeaffedc80cdff60a67f6fdfd04b075f Mon Sep 17 00:00:00 2001 From: Javier Olaechea Date: Tue, 17 Sep 2024 10:17:17 -0500 Subject: gnu: Add emacs-flymake. * gnu/packages/emacs-xyz.scm (emacs-flymake): New variable. Change-Id: I8dc5cd880301dfbf8492e7b998fb80f786dd27d8 Signed-off-by: Nicolas Goaziou --- gnu/packages/emacs-xyz.scm | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) (limited to 'gnu') diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index b11c46f586c..0be1ac83bc3 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -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 -- cgit v1.2.3