[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#57737] [PATCH 5/6] gnu: Add emacs-ob-elm.
From: |
Nicolas Graves |
Subject: |
[bug#57737] [PATCH 5/6] gnu: Add emacs-ob-elm. |
Date: |
Tue, 13 Sep 2022 15:47:07 +0200 |
* gnu/packages/emacs-xyz.scm (emacs-ob-elm): New variable.
---
gnu/packages/emacs-xyz.scm | 25 +++++++++++++++++++++++++
1 file changed, 25 insertions(+)
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index d7b79d30b8..82eaaf53df 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -27187,6 +27187,31 @@ (define-public emacs-eval-in-repl-iex
(pack-eval-in-repl "iex"))
(define-public emacs-eval-in-repl-erlang (pack-eval-in-repl "erlang"))
(define-public emacs-eval-in-repl-elm (pack-eval-in-repl "elm"))
+(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 evaluating Elm code")
+ (description
+"This package adds Org-Babel support for evaluating Elm code, which can be
+enabled by adding @code{(elm . t)} to the variable
+@code{org-babel-do-load-languages}.")
+ (license license:gpl3+))))
+
(define-public emacs-eval-sexp-fu-el
(package
(name "emacs-eval-sexp-fu-el")
--
2.37.3
- [bug#57737] [PATCH 4/7] gnu: Add emacs-eval-in-repl-erlang., (continued)
- [bug#57737] [PATCH 4/7] gnu: Add emacs-eval-in-repl-erlang., Nicolas Graves, 2022/09/11
- [bug#57737] [PATCH 2/7] gnu: Add emacs-alchemist., Nicolas Graves, 2022/09/11
- [bug#57737] [PATCH 5/7] gnu: Add emacs-eval-in-repl-elm., Nicolas Graves, 2022/09/11
- [bug#57737] [PATCH 3/7] gnu: Add emacs-eval-in-repl-iex., Nicolas Graves, 2022/09/11
- [bug#57737] [PATCH 6/7] gnu: Add emacs-ob-elm., Nicolas Graves, 2022/09/11
- [bug#57737] emacs-eval-in-repl patches, Liliana Marie Prikler, 2022/09/11
- [bug#57737] [PATCH 1/6] gnu: Add emacs-eval-in-repl., Nicolas Graves, 2022/09/13
[bug#57737] [PATCH 1/7] gnu: emacs-elixir-mode: Move package for eval-in-repl definition., Nicolas Graves, 2022/09/13
- [bug#57737] [PATCH 3/7] gnu: Add emacs-js-comint., Nicolas Graves, 2022/09/13
- [bug#57737] [PATCH 4/7] gnu: Add emacs-alchemist., Nicolas Graves, 2022/09/13
- [bug#57737] [PATCH 2/7] gnu: Add emacs-eval-in-repl., Nicolas Graves, 2022/09/13
- [bug#57737] [PATCH 7/7] gnu: Add emacs-org-babel-eval-in-repl., Nicolas Graves, 2022/09/13
- [bug#57737] [PATCH 5/7] gnu: Add emacs-eval-in-repl packages., Nicolas Graves, 2022/09/13