guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

03/05: gnu: Add emacs-nodejs-repl.


From: Ludovic Courtès
Subject: 03/05: gnu: Add emacs-nodejs-repl.
Date: Mon, 9 Jul 2018 11:21:13 -0400 (EDT)

civodul pushed a commit to branch master
in repository guix.

commit 6c123c2666f423433a256ccdd954fb3470c29a84
Author: Mathieu Lirzin <address@hidden>
Date:   Sun Jul 8 18:56:10 2018 +0200

    gnu: Add emacs-nodejs-repl.
    
    * gnu/packges/emacs.scm (emacs-nodejs-repl): New variable.
    
    Signed-off-by: Ludovic Courtès <address@hidden>
---
 gnu/packages/emacs.scm | 26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)

diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm
index 9f055cf..9bd4114 100644
--- a/gnu/packages/emacs.scm
+++ b/gnu/packages/emacs.scm
@@ -4182,6 +4182,32 @@ 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"))
+              (file-name (string-append name "-" version ".tar.gz"))))
+    (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:
+
address@hidden
address@hidden TAB completion same as Node.js REPL
address@hidden file name completion in string
address@hidden incremental history search
address@hidden itemize")
+    (license license:gpl3+)))
+
 (define-public emacs-markdown-mode
   (package
     (name "emacs-markdown-mode")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]