gnu: Add emacs-macrostep-geiser.

* gnu/packages/emacs-xyz.scm (emacs-macrostep-geiser): New variable.

Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
This commit is contained in:
Hilton Chain via Guix-patches via 2022-09-25 09:16:47 +08:00 committed by Nicolas Goaziou
parent 29fa1a9039
commit 66bca23293
No known key found for this signature in database
GPG key ID: DA00B4F048E92F2D

View file

@ -20658,6 +20658,30 @@ (define-public emacs-macrostep
expansions for debugging with Edebug as normal.")
(license license:gpl3+))))
(define-public emacs-macrostep-geiser
;; XXX: Upstream does not tag commits (yet). The commit below matches the
;; version bump.
(let ((commit "7927651b188cac07113bce5b2cd0de12b2b082f7"))
(package
(name "emacs-macrostep-geiser")
(version "0.2.0")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/nbfalcon/macrostep-geiser")
(commit commit)))
(file-name (git-file-name name version))
(sha256
(base32 "1gz2kypyrb4k76dn4j02c8s6a3dqb1la5jcrdcifv8saa8lvqyli"))))
(build-system emacs-build-system)
(propagated-inputs (list emacs-macrostep emacs-geiser))
(home-page "https://github.com/nbfalcon/macrostep-geiser")
(synopsis "Macrostep for Geiser and Cider")
(description
"This plug-in implements a Macrostep back-end powered by Geiser.")
(license license:gpl3+))))
(define-public emacs-parent-mode
(package
(name "emacs-parent-mode")