gnu: Add emacs-extempore-mode.

* gnu/packages/emacs-xyz.scm (emacs-extempore-mode): New variable.

Signed-off-by: Tobias Geerinckx-Rice <me@tobias.gr>
master
Giacomo Leidi 2019-10-04 16:22:35 +02:00 committed by Tobias Geerinckx-Rice
parent 4b3b5a06fc
commit 0c3cf62829
No known key found for this signature in database
GPG Key ID: D889B0F018C5493C
1 changed files with 25 additions and 0 deletions

View File

@ -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")