diff options
author | Giacomo Leidi <goodoldpaul@autistici.org> | 2019-10-04 16:22:35 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-10-04 17:04:38 +0200 |
commit | 0c3cf628299458dbbbd783adca5b1d277ead0fc8 (patch) | |
tree | 507a772fe074dea10584d190a8de37a570531f0c /gnu/packages | |
parent | 4b3b5a06fc6879876fe130c161b87888632ab3ad (diff) | |
download | patches-0c3cf628299458dbbbd783adca5b1d277ead0fc8.tar patches-0c3cf628299458dbbbd783adca5b1d277ead0fc8.tar.gz |
gnu: Add emacs-extempore-mode.
* gnu/packages/emacs-xyz.scm (emacs-extempore-mode): New variable.
Signed-off-by: Tobias Geerinckx-Rice <me@tobias.gr>
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/emacs-xyz.scm | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 44fe73c3ef..2c5d1cec83 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") |