From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:54905) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fJkSH-00082X-Ke for guix-patches@gnu.org; Fri, 18 May 2018 14:50:19 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fJkSG-0000or-KP for guix-patches@gnu.org; Fri, 18 May 2018 14:50:17 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:60518) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1fJkSG-0000nv-6k for guix-patches@gnu.org; Fri, 18 May 2018 14:50:16 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1fJkSF-0001UX-WD for guix-patches@gnu.org; Fri, 18 May 2018 14:50:16 -0400 Subject: [bug#31513] [PATCH 15/21] gnu: emacs-helm-flycheck: New variable. Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:54412) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fJkRU-0006dl-Jr for guix-patches@gnu.org; Fri, 18 May 2018 14:49:29 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fJkRT-0008Ut-JU for guix-patches@gnu.org; Fri, 18 May 2018 14:49:28 -0400 Received: from mail-wm0-x22e.google.com ([2a00:1450:400c:c09::22e]:54814) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1fJkRT-0008UB-Bz for guix-patches@gnu.org; Fri, 18 May 2018 14:49:27 -0400 Received: by mail-wm0-x22e.google.com with SMTP id f6-v6so15648441wmc.4 for ; Fri, 18 May 2018 11:49:27 -0700 (PDT) Received: from mimimi.home (2a01cb040a37a0005adf9a0845f647b3.ipv6.abo.wanadoo.fr. [2a01:cb04:a37:a000:5adf:9a08:45f6:47b3]) by smtp.gmail.com with ESMTPSA id q2-v6sm8369863wrj.57.2018.05.18.11.49.25 for (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Fri, 18 May 2018 11:49:25 -0700 (PDT) From: Pierre Neidhardt Date: Fri, 18 May 2018 20:49:04 +0200 Message-Id: <20180518184910.9987-15-ambrevar@gmail.com> In-Reply-To: <20180518184910.9987-1-ambrevar@gmail.com> References: <20180518184910.9987-1-ambrevar@gmail.com> List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 31513@debbugs.gnu.org * gnu/packages/emacs.scm (emacs-helm-flycheck): New variable. --- gnu/packages/emacs.scm | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm index 02db56a1a..c84f97ae9 100644 --- a/gnu/packages/emacs.scm +++ b/gnu/packages/emacs.scm @@ -10873,3 +10873,34 @@ switch between the various windows of one or several specific applications. See @code{helm-exwm-switch-browser} for an example. ") (license license:gpl3+))) + +(define-public emacs-helm-flycheck + (package + (name "emacs-helm-flycheck") + (version "20160710.129") + (source + (origin + (method url-fetch) + (uri (string-append + "https://melpa.org/packages/helm-flycheck-" + version + ".el")) + (sha256 + (base32 + "157yf5xk6wy1li06ifk0mp6iw4yb0ny3h2mrna3m1zsi3anj1pzh")))) + (build-system emacs-build-system) + (propagated-inputs + `(("emacs-dash" ,emacs-dash) + ("emacs-flycheck" ,flycheck) + ("emacs-helm" ,emacs-helm))) + (home-page + "https://github.com/yasuyk/helm-flycheck") + (synopsis "Show flycheck errors with Helm") + (description + "Add the following to your Emacs init file: +@code{ +(require 'helm-flycheck) ;; Not necessary if using ELPA package +(eval-after-load 'flycheck + '(define-key flycheck-mode-map (kbd \"C-c ! h\") 'helm-flycheck)) +}") + (license license:gpl3+))) -- 2.17.0