ngz pushed a commit to branch master
in repository guix.

commit 6dc6d3950616ae3461755a35b37289e89fea0b9f
Author: Nicolas Goaziou <[email protected]>
AuthorDate: Tue Dec 24 17:07:02 2024 +0100

    gnu: Add emacs-shell-maker.
    
    * gnu/packages/emacs-xyz.scm (emacs-shell-maker): New variable.
    
    Change-Id: I67c9b342af8fa10b7178f8ef50fdf756c1adf4b2
---
 gnu/packages/emacs-xyz.scm | 19 +++++++++++++++++++
 1 file changed, 19 insertions(+)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index dd133ff16c..b3662ae639 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -9124,6 +9124,25 @@ same frame (in an extra window).  You can customize the 
initial width of
 the speedbar window.")
       (license license:gpl3+))))
 
+(define-public emacs-shell-maker
+  (package
+    (name "emacs-shell-maker")
+    (version "0.74.1")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://github.com/xenodium/shell-maker";)
+                    (commit (string-append "v" version))))
+              (file-name (git-file-name name version))
+              (sha256
+               (base32
+                "06prky3c8hfvbnb705qa436vznq05zjicdz870l7m2760h6803iz"))))
+    (build-system emacs-build-system)
+    (home-page "https://github.com/xenodium/shell-maker";)
+    (synopsis "Create Emacs shells")
+    (description "Shell Maker is a convenience wrapper around Comint mode.")
+    (license license:gpl3+)))
+
 (define-public emacs-shell-switcher
   (package
     (name "emacs-shell-switcher")

Reply via email to