[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
branch master updated: gnu: Add emacs-literate-elisp.
From: |
guix-commits |
Subject: |
branch master updated: gnu: Add emacs-literate-elisp. |
Date: |
Sat, 29 May 2021 12:50:46 -0400 |
This is an automated email from the git hooks/post-receive script.
ngz pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new 949b376 gnu: Add emacs-literate-elisp.
949b376 is described below
commit 949b376c8c08424d354a2a8e7888d5b3dc6fb202
Author: Nicolas Goaziou <mail@nicolasgoaziou.fr>
AuthorDate: Sat May 29 18:49:39 2021 +0200
gnu: Add emacs-literate-elisp.
* gnu/packages/emacs-xyz.scm (emacs-literate-elisp): New variable.
---
gnu/packages/emacs-xyz.scm | 21 +++++++++++++++++++++
1 file changed, 21 insertions(+)
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index ca4179a..c3b3559 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"))
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- branch master updated: gnu: Add emacs-literate-elisp.,
guix-commits <=