summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Gesthuizen <tim.gesthuizen@yahoo.de>2018-11-27 17:57:14 +0100
committerLudovic Courtès <ludo@gnu.org>2018-11-30 17:03:04 +0100
commitf07a93ed0351b9fadb208cdc8a704d1c8903ffc2 (patch)
treea96dcb660bb61bd613a57552c87def584fa7b76a
parenta3d77c51bc8f641c12989e18dc5e03add776f87e (diff)
gnu: Add emacs-flycheck-irony.
* gnu/packages/emacs.scm (emacs-flycheck-irony): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
-rw-r--r--gnu/packages/emacs.scm23
1 files changed, 23 insertions, 0 deletions
diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm
index 76fa9eb55d0..dc00fb8969b 100644
--- a/gnu/packages/emacs.scm
+++ b/gnu/packages/emacs.scm
@@ -2879,6 +2879,29 @@ with irony-mode using clang-tooling.")
2879 (home-page "https://github.com/Sarcasm/company-irony") 2879 (home-page "https://github.com/Sarcasm/company-irony")
2880 (license license:gpl3+))) 2880 (license license:gpl3+)))
2881 2881
2882(define-public emacs-flycheck-irony
2883 (package
2884 (name "emacs-flycheck-irony")
2885 (version "0.1.0")
2886 (source (origin
2887 (method git-fetch)
2888 (uri (git-reference
2889 (url "https://github.com/Sarcasm/flycheck-irony.git")
2890 (commit (string-append "v" version))))
2891 (sha256
2892 (base32 "0qa5a8wzvzxwqql92ibc9s43k8sj3vwn7skz9hfr8av0skkhx996"))
2893 (file-name (string-append name "-" version))))
2894 (build-system emacs-build-system)
2895 (inputs
2896 `(("irony-mode" ,emacs-irony-mode)
2897 ("flycheck-mode" ,emacs-flycheck)
2898 ("emacs-company" ,emacs-company)))
2899 (synopsis "Live syntax checking frontend for Flycheck using irony-mode")
2900 (description "This package provides a frontend for Flycheck that lets
2901irony-mode do the syntax checking.")
2902 (home-page "https://github.com/Sarcasm/flycheck-irony")
2903 (license license:gpl3+)))
2904
2882(define-public emacs-company-quickhelp 2905(define-public emacs-company-quickhelp
2883 (package 2906 (package
2884 (name "emacs-company-quickhelp") 2907 (name "emacs-company-quickhelp")