From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:34435) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fOesw-0006Ye-OF for guix-patches@gnu.org; Fri, 01 Jun 2018 03:54:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fOest-0003I0-Ce for guix-patches@gnu.org; Fri, 01 Jun 2018 03:54:06 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:48802) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1fOest-0003Hi-88 for guix-patches@gnu.org; Fri, 01 Jun 2018 03:54:03 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1fOest-0004jA-0g for guix-patches@gnu.org; Fri, 01 Jun 2018 03:54:03 -0400 Subject: [bug#31513] [PATCH 15/21] gnu: Add emacs-helm-flycheck. References: <20180518184910.9987-15-ambrevar@gmail.com> In-Reply-To: <20180518184910.9987-15-ambrevar@gmail.com> Resent-Message-ID: From: Pierre Neidhardt Date: Fri, 1 Jun 2018 09:53:23 +0200 Message-Id: <20180601075323.29787-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 0247a45cb..df014c12a 100644 --- a/gnu/packages/emacs.scm +++ b/gnu/packages/emacs.scm @@ -10968,3 +10968,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 + (let ((commit "3cf7d3bb194acacc6395f88360588013d92675d6")) + (package + (name "emacs-helm-flycheck") + (version (git-version "0.4" "1" commit)) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/yasuyk/helm-flycheck") + (commit commit))) + (file-name (string-append name "-" version "-checkout")) + (sha256 + (base32 + "1a2yfxhz04klwhcandqvfzysxp6b7bxyxx1xk1x3kds5hif5fkl4")))) + (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{ +(eval-after-load 'flycheck + '(define-key flycheck-mode-map (kbd \"C-c ! h\") 'helm-flycheck)) +}") + (license license:gpl3+)))) -- 2.17.0