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>
This commit is contained in:
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

View file

@ -27556,6 +27556,29 @@ (define-public emacs-eval-in-repl-sml
(make-emacs-eval-in-repl "sml" #:language "Standard ML"
#: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
(package
(name "emacs-eval-sexp-fu-el")