mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-31 14:56:54 +01:00
gnu: Add emacs-js-comint.
* gnu/packages/emacs-xyz.scm (emacs-js-comint): New variable. Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com>
This commit is contained in:
parent
63ba25cf67
commit
10420af4b1
1 changed files with 21 additions and 0 deletions
|
@ -11115,6 +11115,27 @@ (define-public emacs-js2-mode
|
|||
strings, and code folding.")
|
||||
(license license:gpl3+)))
|
||||
|
||||
(define-public emacs-js-comint
|
||||
(package
|
||||
(name "emacs-js-comint")
|
||||
(version "1.2.0")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "https://stable.melpa.org/packages/"
|
||||
"js-comint-" version ".el"))
|
||||
(sha256
|
||||
(base32 "1qin0hclm3ly62nl5ddiim64bcd2k74b1yqsqqc61cf9k2q8k287"))))
|
||||
(build-system emacs-build-system)
|
||||
(home-page "https://github.com/redguardtoo/js-comint")
|
||||
(synopsis "Interacting with a JavaScript interpeter")
|
||||
(description
|
||||
"This program is a comint mode for Emacs which allows you to run a
|
||||
compatible JavaScript REPL, such as node, SpiderMonkey or Rhino.
|
||||
It also defines a few functions for sending JavaScript input to this REPL from
|
||||
an Emacs buffer.")
|
||||
(license license:gpl3+)))
|
||||
|
||||
(define-public emacs-nodejs-repl
|
||||
(package
|
||||
(name "emacs-nodejs-repl")
|
||||
|
|
Loading…
Reference in a new issue