diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2021-05-29 18:49:39 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2021-05-29 18:49:39 +0200 |
commit | 949b376c8c08424d354a2a8e7888d5b3dc6fb202 (patch) | |
tree | 2551132396c78d3a2aed2cb5212c6587ca6b393d | |
parent | 95f104b161c870a4e868e6ffba538188318f7091 (diff) |
gnu: Add emacs-literate-elisp.
* gnu/packages/emacs-xyz.scm (emacs-literate-elisp): New variable.
-rw-r--r-- | gnu/packages/emacs-xyz.scm | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index ca4179a693..c3b3559f10 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -4489,6 +4489,27 @@ in Lisp modes.") (description "This package provides dynamic evaluation in Emacs.") (license license:gpl3+)))) +(define-public emacs-literate-elisp + (package + (name "emacs-literate-elisp") + (version "0.8") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/jingtaozf/literate-elisp") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0i9468rh61l4xq918fgwk6li93lpm6zbn0lkpxr7pbvkgrl5xsr6")))) + (build-system emacs-build-system) + (home-page "https://github.com/jingtaozf/literate-elisp/tags") + (synopsis "Load Emacs Lisp code blocks from Org files") + (description + "Literate-Elisp is an Emacs lisp library to provide an easy way to use +literal programming in Emacs lisp. It extends the Emacs load mechanism so +Emacs can load Org files as Lisp source files directly.") + (license license:gpl3+))) + (define-public emacs-literate-calc-mode (let ((commit "a50e897a816cb5580ad6ec867eeaae212e0e4798") (revision "1")) |