[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
branch master updated: gnu: Add emacs-literate-calc-mode.
From: |
guix-commits |
Subject: |
branch master updated: gnu: Add emacs-literate-calc-mode. |
Date: |
Tue, 14 Jul 2020 05:10:24 -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 edda093 gnu: Add emacs-literate-calc-mode.
edda093 is described below
commit edda093807767338e0fd339edeb43f6015c4217c
Author: Morgan Smith <Morgan.J.Smith@outlook.com>
AuthorDate: Fri Jul 10 22:08:59 2020 -0400
gnu: Add emacs-literate-calc-mode.
* gnu/packages/emacs-xyz.scm (emacs-literate-calc-mode): New variable.
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
---
gnu/packages/emacs-xyz.scm | 28 ++++++++++++++++++++++++++++
1 file changed, 28 insertions(+)
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 0ed8827..f8e7ec9 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -3541,6 +3541,34 @@ in Lisp modes.")
(description "This package provides dynamic evaluation in Emacs.")
(license license:gpl3+))))
+(define-public emacs-literate-calc-mode
+ (let ((commit "e855bd718fa7d0d70b8f43264e10664369dd3a37")
+ (revision "0"))
+ (package
+ (name "emacs-literate-calc-mode")
+ (version (git-version "0.1" revision commit))
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/sulami/literate-calc-mode.el")
+ (commit commit)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "0mk4cig8g8ibz97mvyan79fkypyanh7r0h7h20ibafq09nb0mw01"))))
+ (build-system emacs-build-system)
+ (propagated-inputs
+ `(("emacs-s" ,emacs-s)))
+ (home-page "https://github.com/sulami/literate-calc-mode.el")
+ (synopsis "Literate programming for Emacs Calc")
+ (description
+ "This library provides literate programming for Calc. There is both
+a major and a minor mode. The major mode does some basic syntax highlighting,
+while the minor mode only evaluates all Calc statements while typing. In
+particular, the minor mode works quite well with Org or Markdown modes, or
+other markup language major modes.")
+ (license license:gpl3+))))
+
(define-public emacs-string-inflection
(package
(name "emacs-string-inflection")
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- branch master updated: gnu: Add emacs-literate-calc-mode.,
guix-commits <=