guix-commits
[Top][All Lists]
Advanced

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

02/04: gnu: Add emacs-flycheck.


From: Ludovic Courtès
Subject: 02/04: gnu: Add emacs-flycheck.
Date: Tue, 01 Sep 2015 12:18:55 +0000

civodul pushed a commit to branch master
in repository guix.

commit 6e3fdbbe264b2a233f32f521e2547e4b6175578b
Author: Ludovic Courtès <address@hidden>
Date:   Tue Sep 1 10:16:32 2015 +0200

    gnu: Add emacs-flycheck.
    
    * gnu/packages/emacs.scm (flycheck): New variable.
---
 gnu/packages/emacs.scm |   28 ++++++++++++++++++++++++++++
 1 files changed, 28 insertions(+), 0 deletions(-)

diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm
index 7bb302c..57d45c2 100644
--- a/gnu/packages/emacs.scm
+++ b/gnu/packages/emacs.scm
@@ -534,6 +534,34 @@ inside body is let-bound to their cdrs in the alist.  Only 
those present in
 the body are let-bound and this search is done at compile time.")
     (license license:gpl3+)))
 
+(define-public flycheck
+  (package
+    (name "emacs-flycheck")
+    (version "20150831.1343")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append "http://melpa.org/packages/flycheck-";
+                                  version ".tar"))
+              (sha256
+               (base32
+                "0a0iyvki62rqi24dbrcdq3i1wdygdi350gcjsfrfr6fz8fasz42l"))))
+    (build-system emacs-build-system)
+    (propagated-inputs
+     `(("emacs-dash" ,emacs-dash)
+       ("emacs-let-alist" ,let-alist)))
+    (home-page "https://www.flycheck.org";)
+    (synopsis "On-the-fly syntax checking")
+    (description
+     "This package provides on-the-fly syntax checking for GNU Emacs.  It is a
+replacement for the older Flymake extension which is part of GNU Emacs, with
+many improvements and additional features.
+
+Flycheck provides fully-automatic, fail-safe, on-the-fly background syntax
+checking for over 30 programming and markup languages with more than 70
+different tools.  It highlights errors and warnings inline in the buffer, and
+provides an optional IDE-like error list.")
+    (license license:gpl3+)))                     ;+GFDLv1.3+ for the manual
+
 
 ;;;
 ;;; Web browsing.



reply via email to

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