me
/
guix
Archived
1
0
Fork 0

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>
master
Nicolas Graves 2022-09-23 20:34:37 +02:00 committed by Liliana Marie Prikler
parent 7b1d02247b
commit dab3800691
No known key found for this signature in database
GPG Key ID: 442A84B8C70E2F87
1 changed files with 25 additions and 0 deletions

View File

@ -244,6 +244,7 @@
#:use-module (gnu packages finance) #:use-module (gnu packages finance)
#:use-module (gnu packages ocaml) #:use-module (gnu packages ocaml)
#:use-module (gnu packages erlang) #:use-module (gnu packages erlang)
#:use-module (gnu packages statistics)
#:use-module (guix utils) #:use-module (guix utils)
#:use-module (srfi srfi-1) #:use-module (srfi srfi-1)
#:use-module (ice-9 match)) #:use-module (ice-9 match))
@ -27579,6 +27580,30 @@ or regions to a REPL from ~a buffers.") language))))
"This package adds support to Org-Babel for evaluating Elm code.") "This package adds support to Org-Babel for evaluating Elm code.")
(license license:gpl3+)))) (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 (define-public emacs-eval-sexp-fu-el
(package (package
(name "emacs-eval-sexp-fu-el") (name "emacs-eval-sexp-fu-el")