guix-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[bug#57667] [PATCH] gnu: Add emacs-flymake-collection.


From: jgart
Subject: [bug#57667] [PATCH] gnu: Add emacs-flymake-collection.
Date: Wed, 7 Sep 2022 22:49:31 -0500

* gnu/packages/emacs-xyz.scm (emacs-flymake-collection): New variable.
---
 gnu/packages/emacs-xyz.scm | 21 +++++++++++++++++++++
 1 file changed, 21 insertions(+)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 2af9fd945b..2d4f451d8a 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -1822,6 +1822,27 @@ (define-public emacs-flycheck
 provides an optional IDE-like error list.")
     (license license:gpl3+)))                     ;+GFDLv1.3+ for the manual
 
+(define-public emacs-flymake-collection
+  (package
+    (name "emacs-flymake-collection")
+    (version "20220612.1340")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append "https://melpa.org/packages/flymake-collection-";
+                           version ".tar"))
+       (sha256
+        (base32 "1ivf7hqjnpgya6bkn83134yhw6nc29fic642jb73w60j461l2a69"))))
+    (build-system emacs-build-system)
+    (home-page "https://github.com/mohkale/flymake-collection/";)
+    (synopsis "Collection of checkers for flymake")
+    (description
+"This package tries to provide a comprehensive list of
+diagnostic-functions for use with flymake, give users the tools to
+easily define new syntax checkers and help selectively enable or disable
+diagnostic-functions based on major-modes.")
+    (license license:expat)))
+
 (define-public emacs-flymake-flycheck
   (package
     (name "emacs-flymake-flycheck")
-- 
2.37.3






reply via email to

[Prev in Thread] Current Thread [Next in Thread]