From 9a9e680b9a6e041fc8b12518cf32f4adbc75bce9 Mon Sep 17 00:00:00 2001 From: Brian Leung Date: Fri, 19 Apr 2019 20:59:14 +0200 Subject: [PATCH 3/7] gnu: Add emacs-flycheck-flow. * gnu/packages/emacs-xyz.scm (emacs-flycheck-flow): New variable. --- gnu/packages/emacs-xyz.scm | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 39b0f7925c..47920f19dc 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -2745,6 +2745,33 @@ the speedbar window.") boundaries defined by syntax highlighting.") (license license:gpl3+)))) +(define-public emacs-flycheck-flow + (let ((commit "9e8e52cfc98af6a23fd906f9cb5d5d470d8cf82d") + (version "1.1") + (revision "1")) + (package + (name "emacs-flycheck-flow") + (version (git-version version revision commit)) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/lbolla/emacs-flycheck-flow") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "14qldlisbmxzammr500gyha2hiv2xgyzfc6mysqii06kbcqn1ik1")))) + (build-system emacs-build-system) + (propagated-inputs + `(("emacs-flycheck" ,emacs-flycheck))) + (home-page "https://github.com/lbolla/emacs-flycheck-flow") + (synopsis "Flow support for @code{flycheck-mode}") + (description + "This package allows @code{flycheck-mode} to provide syntax-checking +for Flow files.") + (license license:gpl3+)))) + (define-public emacs-ob-ipython (package (name "emacs-ob-ipython") -- 2.21.0