guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

branch master updated: gnu: Add emacs-eshell-toggle.


From: guix-commits
Subject: branch master updated: gnu: Add emacs-eshell-toggle.
Date: Sat, 25 Jan 2020 13:44:43 -0500

This is an automated email from the git hooks/post-receive script.

leungbk pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 704719e  gnu: Add emacs-eshell-toggle.
704719e is described below

commit 704719edade1368f798c9301f3a8197a0df5c930
Author: Brian Leung <address@hidden>
AuthorDate: Sat Jan 25 10:35:47 2020 -0800

    gnu: Add emacs-eshell-toggle.
    
    * gnu/packages/emacs-xyz.scm (emacs-eshell-toggle): New variable.
---
 gnu/packages/emacs-xyz.scm | 25 +++++++++++++++++++++++++
 1 file changed, 25 insertions(+)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 782fa7a..7a561c7 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -20632,6 +20632,31 @@ each slide with left/right keys.")
 execution of buffer-exposing commands.")
     (license license:gpl3+)))
 
+(define-public emacs-eshell-toggle
+  (let ((commit "ddfbe0a693497c4d4bc5494a19970ba4f6ab9033")
+        (revision "1"))
+    (package
+      (name "emacs-eshell-toggle")
+      (version (git-version "0.10.0" revision commit))
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+               (url "https://github.com/4DA/eshell-toggle.git";)
+               (commit commit)))
+         (sha256
+          (base32
+           "0xqrp8pwbmfxjdqipgpw5nw633mvhjjjm3k3j9sh9xdpmw05hhws"))
+         (file-name (git-file-name name version))))
+      (build-system emacs-build-system)
+      (propagated-inputs
+       `(("emacs-dash" ,emacs-dash)))
+      (home-page "https://github.com/4DA/eshell-toggle";)
+      (synopsis "Show and hide an @code{eshell} instance")
+      (description "This package toggles an @code{eshell} instance for the
+current buffer.")
+      (license license:gpl3+))))
+
 (define-public emacs-repl-toggle
   (package
     (name "emacs-repl-toggle")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]