diff options
author | gemmaro <gemmaro.dev@gmail.com> | 2024-11-09 12:10:27 +0900 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2024-12-24 00:26:54 +0100 |
commit | 7ca7059ccd4f127b3e442148495737221989d8b4 (patch) | |
tree | 37074588675fc4e9588b880df41cf9911b77eccf | |
parent | 98fdc0876ba1a5ca06820a6ade52fa8160a666e8 (diff) | |
download | guix-7ca7059ccd4f127b3e442148495737221989d8b4.tar.gz guix-7ca7059ccd4f127b3e442148495737221989d8b4.zip |
gnu: Add emacs-mistty.
* gnu/packages/emacs-xyz.scm (emacs-mistty): New variable.
Change-Id: I13c67437d6cb7813d1d399626e52834019cb41f0
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
-rw-r--r-- | gnu/packages/emacs-xyz.scm | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index f4b2526f75..15b3e73712 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -4450,6 +4450,38 @@ programs such as @code{vi}, @code{top}, @code{htop} or even @code{emacs -nw}.") (license license:gpl3+))) +(define-public emacs-mistty + (let ((revision "0") + (commit "6284c0f6529bcce57d183e20765052c603846115")) + (package + (name "emacs-mistty") + (version (git-version "1.1" revision commit)) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/szermatt/mistty") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1159dy63dq7kyh06q9kfvq6x4bx59w9g1slq2m3xvx2ngaiydf97")))) + (build-system emacs-build-system) + (arguments + (list + #:phases #~(modify-phases %standard-phases + (add-before 'patch-el-files 'replace-bash-path + (lambda* (#:key inputs #:allow-other-keys) + (substitute* "mistty-term.el" + (("/bin/bash") + (search-input-file inputs "bin/bash")))))))) + (inputs (list bash)) + (home-page "https://github.com/szermatt/mistty") + (synopsis "Emacs terminal major mode based on Term") + (description + "This package defines a major mode that runs a shell inside of +a buffer, similarly to Comint mode. It is built on top of Term.") + (license license:gpl3+)))) + (define-public emacs-counsel-bbdb (package (name "emacs-counsel-bbdb") |