From 6e3fdbbe264b2a233f32f521e2547e4b6175578b Mon Sep 17 00:00:00 2001 From: Ludovic Courtès Date: Tue, 1 Sep 2015 10:16:32 +0200 Subject: gnu: Add emacs-flycheck. * gnu/packages/emacs.scm (flycheck): New variable. --- gnu/packages/emacs.scm | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) (limited to 'gnu/packages') diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm index 7bb302c49f..57d45c22b3 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. -- cgit v1.2.3