[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
02/02: gnu: Add emacs-extempore-mode.
From: |
guix-commits |
Subject: |
02/02: gnu: Add emacs-extempore-mode. |
Date: |
Fri, 4 Oct 2019 11:04:53 -0400 (EDT) |
nckx pushed a commit to branch master
in repository guix.
commit 0c3cf628299458dbbbd783adca5b1d277ead0fc8
Author: Giacomo Leidi <address@hidden>
Date: Fri Oct 4 16:22:35 2019 +0200
gnu: Add emacs-extempore-mode.
* gnu/packages/emacs-xyz.scm (emacs-extempore-mode): New variable.
Signed-off-by: Tobias Geerinckx-Rice <address@hidden>
---
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 44fe73c..2c5d1ce 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -2118,6 +2118,31 @@ code written in the D programming language. This mode
is currently known to
work with Emacs 24 and 25.")
(license license:gpl2+)))
+(define-public emacs-extempore-mode
+ ;; Use the latest commit at time of packaging. There are no releases or
tags.
+ (let ((commit "848ad0084f27b92d1cf98dabffbad29f959a642d")
+ (revision "1"))
+ (package
+ (name "emacs-extempore-mode")
+ (version (git-version "0.0.0" revision commit))
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url
"https://github.com/extemporelang/extempore-emacs-mode.git")
+ (commit commit)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "00wr025php7nl33x541s9rjm99hj0jbdcmnw9ljx5hqpm04aqm7c"))))
+ (build-system emacs-build-system)
+ (home-page "https://github.com/extemporelang/extempore-emacs-mode")
+ (synopsis "Emacs major mode for Extempore source files")
+ (description
+ "This package provides a major mode for editing Extempore code. It can
+create an Extempore REPL, connect the current @code{extempore-mode} buffer to a
+running Extempore process, and more.")
+ (license license:bsd-2))))
+
(define-public emacs-keyfreq
(package
(name "emacs-keyfreq")