From 4a6f2cee203bf43c052ccc133463e31f8b78465c Mon Sep 17 00:00:00 2001 From: Brian Leung Date: Tue, 3 Dec 2019 17:23:50 -0800 Subject: gnu: Add emacs-repl-toggle. * gnu/packages/emacs-xyz.scm (emacs-repl-toggle): New variable. --- gnu/packages/emacs-xyz.scm | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) (limited to 'gnu') diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 6e158c3653..dbd7f7b592 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -20200,3 +20200,25 @@ each slide with left/right keys.") 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+))) -- cgit v1.2.3