[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/06: gnu: Add emacs-eval-in-repl.
From: |
guix-commits |
Subject: |
01/06: gnu: Add emacs-eval-in-repl. |
Date: |
Fri, 23 Sep 2022 19:52:37 -0400 (EDT) |
lilyp pushed a commit to branch master
in repository guix.
commit 63ba25cf67983adaa23a6a09cf92e870de7ae0f5
Author: Nicolas Graves <ngraves@ngraves.fr>
AuthorDate: Fri Sep 23 20:34:32 2022 +0200
gnu: Add emacs-eval-in-repl.
* gnu/packages/emacs-xyz.scm (emacs-eval-in-repl): New variable.
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com>
---
gnu/packages/emacs-xyz.scm | 29 +++++++++++++++++++++++++++++
1 file changed, 29 insertions(+)
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index b98b435e9b..fe14b2d0e7 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -116,6 +116,7 @@
;;; Copyright © 2022 Haider Mirza <haider@haider.gq>
;;; Copyright © 2022 Jose G Perez Taveras <josegpt27@gmail.com>
;;; Copyright © 2022 Hilton Chain <hako@ultrarare.space>
+;;; Copyright © 2022 Nicolas Graves <ngraves@ngraves.fr>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -27392,6 +27393,34 @@ outline-enabled table of contents, additional metadata
association for Info
nodes, and more.")
(license license:gpl2+))))
+(define-public emacs-eval-in-repl
+ (package
+ (name "emacs-eval-in-repl")
+ (version "0.9.7")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/kaz-yos/eval-in-repl")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "1mrssbl0wyc6iij8zk1y3h9bd3rv53nnrxsij7fn67l1m4z0clyn"))))
+ (build-system emacs-build-system)
+ (arguments
+ (list #:include
+ #~(list "eval-in-repl\\.el" "eval-in-repl-test\\.el"
"README\\.md")))
+ (propagated-inputs (list emacs-dash emacs-paredit emacs-ace-window))
+ (home-page "https://github.com/kaz-yos/eval-in-repl")
+ (synopsis "One keybinding to communicate with REPLs")
+ (description
+ "@code{eval-in-repl} provides a consistent ESS-like evaluation interface
+for various REPLs. In particular, it mimics ESS' C-RET binding, which sends a
+line or region to an appropriately configured shell. This package provides
+just the core of @code{eval-in-repl}---for the languages themselves, see their
+respective packages.")
+ (license license:expat)))
+
(define-public emacs-eval-sexp-fu-el
(package
(name "emacs-eval-sexp-fu-el")
- branch master updated (08d5152332 -> dab3800691), guix-commits, 2022/09/23
- 02/06: gnu: Add emacs-js-comint., guix-commits, 2022/09/23
- 03/06: gnu: Add emacs-alchemist., guix-commits, 2022/09/23
- 05/06: gnu: Add emacs-ob-elm., guix-commits, 2022/09/23
- 06/06: gnu: Add emacs-org-babel-eval-in-repl., guix-commits, 2022/09/23
- 01/06: gnu: Add emacs-eval-in-repl.,
guix-commits <=
- 04/06: gnu: Add emacs-eval-in-repl packages., guix-commits, 2022/09/23