From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:55257) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jIkI2-00045r-JS for guix-patches@gnu.org; Sun, 29 Mar 2020 22:36:39 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1jIkI1-0003tO-6z for guix-patches@gnu.org; Sun, 29 Mar 2020 22:36:38 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:48666) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1jIkI1-0003t1-1A for guix-patches@gnu.org; Sun, 29 Mar 2020 22:36:37 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1jIkI0-0004lC-U0 for guix-patches@gnu.org; Sun, 29 Mar 2020 22:36:36 -0400 Subject: [bug#40258] [PATCH] gnu: Add emacs-flycheck-elm. References: <87tv29iieh.fsf@asu.edu> In-Reply-To: <87tv29iieh.fsf@asu.edu> Resent-Message-ID: From: John Soo Date: Sat, 28 Mar 2020 13:35:03 -0700 Message-ID: <87pncw43rc.fsf@asu.edu> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" 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: 40258@debbugs.gnu.org --=-=-= Content-Type: text/plain Hi Guix, I forgot my patch was applied on some other work. This cherry-picks it on to master. Thanks, John --=-=-= Content-Type: text/x-patch; charset=utf-8 Content-Disposition: attachment; filename=0001-gnu-Add-emacs-flycheck-elm.patch Content-Transfer-Encoding: quoted-printable Content-Description: add emacs-flycheck-elm >>From 64341a1ae6717f3e178d56197cceb5022815992b Mon Sep 17 00:00:00 2001 From: John Soo Date: Thu, 19 Mar 2020 09:57:31 -0700 Subject: [PATCH] gnu: Add emacs-flycheck-elm. * gnu/packages/emacs-xyz.scm (emacs-flycheck-elm): New variable. --- gnu/packages/emacs-xyz.scm | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 86033fd200..f56cc16970 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -65,6 +65,7 @@ ;;; Copyright =C2=A9 2020 Michael Rohleder ;;; Copyright =C2=A9 2020 Brice Waegeneire ;;; Copyright =C2=A9 2020 6033fe7de85d <6033fe7de85d@airmail.cc> +;;; Copyright =C2=A9 2020 John Soo ;;; ;;; This file is part of GNU Guix. ;;; @@ -21774,3 +21775,28 @@ enables modal editing and composition of commands,= too. It combines ideas of other Editors like Vim or Kakoune and tries to align them with regular Ema= cs conventions.") (license license:gpl3+))) + +(define-public emacs-flycheck-elm + (package + (name "emacs-flycheck-elm") + (version "debd0af") + (source + (origin + (method git-fetch) + (uri + (git-reference + (url "https://github.com/bsermons/flycheck-elm") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1vl0lss2n50pz5wscqj6vhjwb4hbg8xx2chh5vafsrnn0a3fryrd")))) + (inputs + `(("emacs-flycheck" ,emacs-flycheck) + ("emacs-let-alist" ,emacs-let-alist) + ("emacs-seq" ,emacs-seq))) + (build-system emacs-build-system) + (home-page "https://github.com/bsermons/flycheck-elm") + (synopsis "Flycheck support for the elm language") + (description "Flycheck support for the elm language.") + (license license:gpl2+))) --=20 2.26.0 --=-=-=--