me
/
guix
Archived
1
0
Fork 0

gnu: Add emacs-ob-elm.

* gnu/packages/emacs-xyz.scm (emacs-ob-elm): New variable.

Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com>
master
Nicolas Graves 2022-09-23 20:34:36 +02:00 committed by Liliana Marie Prikler
parent 0b120ad5f8
commit 7b1d02247b
No known key found for this signature in database
GPG Key ID: 442A84B8C70E2F87
1 changed files with 23 additions and 0 deletions

View File

@ -27556,6 +27556,29 @@ or regions to a REPL from ~a buffers.") language))))
(make-emacs-eval-in-repl "sml" #:language "Standard ML" (make-emacs-eval-in-repl "sml" #:language "Standard ML"
#:inputs (list emacs-sml-mode))) #:inputs (list emacs-sml-mode)))
(define-public emacs-ob-elm
(let ((commit "d3a9fbc2f56416894c9aed65ea9a20cc1d98f15d")
(revision "0"))
(package
(name "emacs-ob-elm")
(version (git-version "0.0" revision commit))
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/BonfaceKilz/ob-elm")
(commit commit)))
(file-name (git-file-name name version))
(sha256
(base32
"1wdlr0cbsb2drdmcn2bnivjkj1f2v52l6yizwsnjgi4xq3w6k56h"))))
(build-system emacs-build-system)
(home-page "https://github.com/BonfaceKilz/ob-elm")
(synopsis "Org-Babel support for Elm code")
(description
"This package adds support to Org-Babel for evaluating Elm code.")
(license license:gpl3+))))
(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")