mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-02-02 16:17:27 +01:00
gnu: Add emacs-repl-toggle.
* gnu/packages/emacs-xyz.scm (emacs-repl-toggle): New variable.
This commit is contained in:
parent
ab9feebb31
commit
4a6f2cee20
1 changed files with 22 additions and 0 deletions
|
@ -20200,3 +20200,25 @@ (define-public emacs-fullframe
|
|||
execution of buffer-exposing commands.")
|
||||
(license license:gpl3+)))
|
||||
|
||||
(define-public emacs-repl-toggle
|
||||
(package
|
||||
(name "emacs-repl-toggle")
|
||||
(version "0.6.1")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/tomterl/repl-toggle.git")
|
||||
(commit version)))
|
||||
(sha256
|
||||
(base32
|
||||
"12h3xxja3isnhvrqx7m2g7a5d8h68cc85pbqyhiipfxyafyl1yxd"))
|
||||
(file-name (git-file-name name version))))
|
||||
(build-system emacs-build-system)
|
||||
(propagated-inputs
|
||||
`(("emacs-fullframe" ,emacs-fullframe)))
|
||||
(home-page "https://github.com/tomterl/repl-toggle")
|
||||
(synopsis "Switch to and from current major mode's REPL")
|
||||
(description "This package provides a function to switch to and from a
|
||||
REPL appropriate to the current major mode.")
|
||||
(license license:gpl3+)))
|
||||
|
|
Loading…
Reference in a new issue