From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:50630) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jNItQ-0001Ep-5L for guix-patches@gnu.org; Sat, 11 Apr 2020 12:22:05 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1jNItO-00009Y-TN for guix-patches@gnu.org; Sat, 11 Apr 2020 12:22:04 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:45482) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1jNItO-00009S-KL for guix-patches@gnu.org; Sat, 11 Apr 2020 12:22:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1jNItO-0007Sz-Gr for guix-patches@gnu.org; Sat, 11 Apr 2020 12:22:02 -0400 Subject: [bug#40301] [PATCH] Fixed some issues with the patches. References: <87h7y82cey.fsf@asu.edu> In-Reply-To: <87h7y82cey.fsf@asu.edu> Resent-Message-ID: From: John Soo Date: Sat, 11 Apr 2020 09:21:27 -0700 Message-ID: <87o8ryq9h4.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: 40301@debbugs.gnu.org --=-=-= Content-Type: text/plain Hi Guix, I rebased these commits on master, moved the build-system field up, and put the sha string on the same line as base32. I also moved the definition further up in the file to avoid conflicts. Thanks! John --=-=-= Content-Type: text/x-patch Content-Disposition: attachment; filename=0001-gnu-Add-emacs-psc-ide.patch >From ce0c61cbf65fbda29f5fa8ebd5c22558d71eec62 Mon Sep 17 00:00:00 2001 From: John Soo Date: Tue, 24 Mar 2020 07:36:28 -0700 Subject: [PATCH] gnu: Add emacs-psc-ide. * gnu/packages/emacs-xyz.scm (emacs-psc-ide): New variable. --- gnu/packages/emacs-xyz.scm | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index e700920266..25a854cf5a 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -12334,6 +12334,43 @@ keychains. The keychain entries are displayed in a directory-like structure and can be consulted and modified.") (license license:gpl3+))) +(define-public emacs-psc-ide + (package + (name "emacs-psc-ide") + (version "0.0.0") + (source + (origin + (method git-fetch) + (uri + (git-reference + (url "https://github.com/purescript-emacs/psc-ide-emacs") + (commit "7fc2b841be25f5bc5e1eb7d0634436181c38b3fe"))) + (file-name (git-file-name name "0.0.0")) + (sha256 + (base32 "0r0fymyai30jimm34z1cmav4wgij8ci6s1d9y7qigygfbbfrdsmj")))) + (build-system emacs-build-system) + (inputs + `(("emacs-company" ,emacs-company) + ("emacs-dash" ,emacs-dash) + ("emacs-flycheck" ,emacs-flycheck) + ("emacs-let-alist" ,emacs-let-alist) + ("emacs-s" ,emacs-s) + ("emacs-seq" ,emacs-seq))) + (home-page "https://github.com/purescript-emacs/psc-ide-emacs") + (synopsis "Emacs integration for PureScript's psc-ide tool") + (description + "Emacs integration for PureScript's psc-ide tool. Featuring: +@itemize +@item Completions +@item Type at point +@item Go to definition +@item Automatic imports +@item Case split +@item Build system integration +@item Flycheck support +@end itemize") + (license license:gpl3+))) + (define-public emacs-evil-anzu (package (name "emacs-evil-anzu") -- 2.26.0 --=-=-=--