From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:48970) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fcCzh-0004VB-Gc for guix-patches@gnu.org; Sun, 08 Jul 2018 12:57:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fcCze-0003hg-BM for guix-patches@gnu.org; Sun, 08 Jul 2018 12:57:05 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:43428) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1fcCze-0003hW-61 for guix-patches@gnu.org; Sun, 08 Jul 2018 12:57:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1fcCzd-00036t-S3 for guix-patches@gnu.org; Sun, 08 Jul 2018 12:57:01 -0400 Subject: [bug#32097] [PATCH 1/3] gnu: Add emacs-nodejs-repl. References: <20180708165412.2902-1-mthl@gnu.org> In-Reply-To: <20180708165412.2902-1-mthl@gnu.org> Resent-Message-ID: From: Mathieu Lirzin Date: Sun, 8 Jul 2018 18:56:10 +0200 Message-Id: <20180708165612.3011-1-mthl@gnu.org> 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: 32097@debbugs.gnu.org Cc: Mathieu Lirzin * gnu/packges/emacs.scm (emacs-nodejs-repl): New variable. --- gnu/packages/emacs.scm | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm index 9f055cfc5..97835d22e 100644 --- a/gnu/packages/emacs.scm +++ b/gnu/packages/emacs.scm @@ -4182,6 +4182,31 @@ errors and strict-mode warnings, smart line-wrapping within comments and strings, and code folding.") (license license:gpl3+))) +(define-public emacs-nodejs-repl + (package + (name "emacs-nodejs-repl") + (version "0.1.6") + (source (origin + (method url-fetch) + (uri (string-append "https://github.com/abicky/nodejs-repl.el" + "/archive/" version ".tar.gz")) + (sha256 + (base32 + "0sphg1jxi3a5l0gqdp27d0qgyjaiq2p293av9zm8ksm0vwqp3fr9")))) + (build-system emacs-build-system) + (home-page "https://github.com/abicky/nodejs-repl.el") + (synopsis "Node.js REPL inside Emacs") + (description + "This program is derived from comint-mode and provides the following +features: + +@itemize +@item TAB completion same as Node.js REPL +@item file name completion in string +@item incremental history search +@end itemize") + (license license:gpl3+))) + (define-public emacs-markdown-mode (package (name "emacs-markdown-mode") -- 2.18.0