mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 22:08:16 -05:00
gnu: Add emacs-org-babel-eval-in-repl.
* gnu/packages/emacs-xyz.scm (emacs-org-babel-eval-in-repl): New variable. Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com>
This commit is contained in:
parent
7b1d02247b
commit
dab3800691
1 changed files with 25 additions and 0 deletions
|
@ -244,6 +244,7 @@ (define-module (gnu packages emacs-xyz)
|
|||
#:use-module (gnu packages finance)
|
||||
#:use-module (gnu packages ocaml)
|
||||
#:use-module (gnu packages erlang)
|
||||
#:use-module (gnu packages statistics)
|
||||
#:use-module (guix utils)
|
||||
#:use-module (srfi srfi-1)
|
||||
#:use-module (ice-9 match))
|
||||
|
@ -27579,6 +27580,30 @@ (define-public emacs-ob-elm
|
|||
"This package adds support to Org-Babel for evaluating Elm code.")
|
||||
(license license:gpl3+))))
|
||||
|
||||
(define-public emacs-org-babel-eval-in-repl
|
||||
(package
|
||||
(name "emacs-org-babel-eval-in-repl")
|
||||
(version "1.6")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "https://stable.melpa.org/packages/"
|
||||
"org-babel-eval-in-repl-" version ".tar"))
|
||||
(sha256
|
||||
(base32 "0bdnps6m3kcvsagz8cfm3kf2rvxzl2p252pfggwbdbl43kzvl35h"))
|
||||
(modules '((guix build utils)))
|
||||
(snippet
|
||||
#~(begin (delete-file "eval-in-repl-matlab.el")))))
|
||||
(build-system emacs-build-system)
|
||||
(propagated-inputs (list emacs-eval-in-repl emacs-ess))
|
||||
(home-page "https://github.com/diadochos/org-babel-eval-in-repl")
|
||||
(synopsis "Eval org-mode babel code blocks in various REPLs")
|
||||
(description
|
||||
"This package allows you to execute org-mode source code blocks with
|
||||
@code{eval-in-repl}. It can execute code blocks asynchronously, without
|
||||
needing to write the result into the buffer.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public emacs-eval-sexp-fu-el
|
||||
(package
|
||||
(name "emacs-eval-sexp-fu-el")
|
||||
|
|
Loading…
Reference in a new issue