me
/
guix
Archived
1
0
Fork 0

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>
master
Joseph LaFreniere 2021-07-17 11:54:34 -05:00 committed by Ludovic Courtès
parent de1ae96184
commit e9d47ee718
No known key found for this signature in database
GPG Key ID: 090B11993D9AEBB5
1 changed files with 28 additions and 0 deletions

View File

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