From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:45370) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jJ2AW-0004oy-4c for guix-patches@gnu.org; Mon, 30 Mar 2020 17:42:05 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1jJ2AU-0001wW-VG for guix-patches@gnu.org; Mon, 30 Mar 2020 17:42:04 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:51896) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1jJ2AU-0001wR-Lb for guix-patches@gnu.org; Mon, 30 Mar 2020 17:42:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1jJ2AU-0007FY-F7 for guix-patches@gnu.org; Mon, 30 Mar 2020 17:42:02 -0400 Subject: [bug#40258] [PATCH] gnu: Add emacs-flycheck-elm. Resent-Message-ID: From: John Soo References: <87tv29iieh.fsf@asu.edu> <87pncw43rc.fsf@asu.edu> <87d08u7zv5.fsf@nicolasgoaziou.fr> <87369pwvd6.fsf@asu.edu> Date: Mon, 30 Mar 2020 14:41:04 -0700 In-Reply-To: <87369pwvd6.fsf@asu.edu> (John Soo's message of "Mon, 30 Mar 2020 11:28:05 -0700") Message-ID: <87lfnhv7v3.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: Nicolas Goaziou Cc: 40258@debbugs.gnu.org --=-=-= Content-Type: text/plain Hi Nicolas, They fixed the license upstream already. Here I rebased on master and changed inputs -> propagated inputs. Also I updated the commit to the one with the correct license. Thanks again, John --=-=-= Content-Type: text/x-patch Content-Disposition: attachment; filename=0001-gnu-Add-emacs-flycheck-elm.patch Content-Description: add emacs-flycheck-elm >From d1ff6af2826f0057a5e3c74b9dafcf91ea7b9524 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 | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 74136e7efa..f97c806aab 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -22039,3 +22039,28 @@ conventions.") (description "Haskell-Snippets is a collection of YASnippet Haskell snippets for Emacs.") (license license:expat)))) + +(define-public emacs-flycheck-elm + (let ((revision "0") + (commit "1b60050efd4729bfba548f3e5adbcb58436667cb")) + (package + (name "emacs-flycheck-elm") + (version (git-version "0" revision commit)) + (source + (origin + (method git-fetch) + (uri + (git-reference + (url "https://github.com/bsermons/flycheck-elm") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1kjms9d2c98ffd1qxs879qhg0n4jzic0r5kni9y4gz3v09ww8zms")))) + (propagated-inputs + `(("emacs-flycheck" ,emacs-flycheck) + ("emacs-let-alist" ,emacs-let-alist))) + (build-system emacs-build-system) + (home-page "https://github.com/bsermons/flycheck-elm") + (synopsis "Flycheck support for the Elm") + (description "Flycheck-elm adds flycheck support for Elm.") + (license license:gpl3+)))) -- 2.26.0 --=-=-=--