diff options
author | Joseph LaFreniere <joseph@lafreniere.xyz> | 2021-07-17 11:54:34 -0500 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2021-07-22 00:02:33 +0200 |
commit | e9d47ee718a5bf0cd576240b849dbc115d5147f9 (patch) | |
tree | c933916bb92bee083d672e9b3e609e0ca07f1544 | |
parent | de1ae96184ecf538e27dc9c42b820476c48fe609 (diff) | |
download | guix-e9d47ee718a5bf0cd576240b849dbc115d5147f9.tar guix-e9d47ee718a5bf0cd576240b849dbc115d5147f9.tar.gz |
gnu: Add emacs-seeing-is-believing.
* gnu/packages/emacs-xyz.scm (emacs-seeing-is-believing): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
-rw-r--r-- | gnu/packages/emacs-xyz.scm | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 5fe1c20976..1992e8863c 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -28985,3 +28985,31 @@ to the @url{https://multitran.com} online dictionary.") "Kibit Helper provides functions to work with the Kibit Leiningen plugin for detecting and improve non-idiomatic Clojure source code.") (license license:gpl3+))) + +(define-public emacs-seeing-is-believing + (let ((version "1.2.0") ; from .el file + (commit "fbbe246c0fda87bb26227bb826eebadb418a220f") + (revision "0")) + (package + (name "emacs-seeing-is-believing") + (home-page "https://github.com/jcinnamond/seeing-is-believing") + (version (git-version version revision commit)) + (source + (origin + (method git-fetch) + (uri (git-reference + (url home-page) + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1h1b48s2iirswdlvfz41jbflm4x09ksc2lycrc1awzlwd6r8hdhg")))) + (build-system emacs-build-system) + (synopsis + "Minor mode for running the seeing-is-believing Ruby gem") + (description + "@uref{https://github.com/JoshCheek/seeing_is_believing,Seeing Is +Believing} is a ruby gem to evaluate Ruby code, recording the results of each +line. This minor mode provides an easy way to run it from Emacs on the +current region or entire buffer.") + (license license:gpl3+)))) |