guix-commits
[Top][All Lists]
Advanced

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

10/11: gnu: Add emacs-helm-flycheck.


From: Ludovic Courtès
Subject: 10/11: gnu: Add emacs-helm-flycheck.
Date: Fri, 8 Jun 2018 11:04:33 -0400 (EDT)

civodul pushed a commit to branch master
in repository guix.

commit daa9e89d564facecdde2ac68e3d4d6bb751ed7f1
Author: Pierre Neidhardt <address@hidden>
Date:   Fri Jun 1 09:53:23 2018 +0200

    gnu: Add emacs-helm-flycheck.
    
    * gnu/packages/emacs.scm (emacs-helm-flycheck): New variable.
    
    Signed-off-by: Ludovic Courtès <address@hidden>
---
 gnu/packages/emacs.scm | 26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)

diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm
index f4d9beb..b728816 100644
--- a/gnu/packages/emacs.scm
+++ b/gnu/packages/emacs.scm
@@ -10995,3 +10995,29 @@ from @code{emms-source-file-default-directory}.")
 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
+       "This integrates Flycheck with Helm.")
+      (license license:gpl3+))))



reply via email to

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