summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorNicolas Goaziou <mail@nicolasgoaziou.fr>2025-01-26 19:31:49 +0100
committerNicolas Goaziou <mail@nicolasgoaziou.fr>2025-01-26 20:58:35 +0100
commit59198a07949c7540a1a20644e8ccf7fe8eae5ccd (patch)
treedc657d96327cacafa981509494eca2d114bb1372 /gnu
parent1a84b2d460eab889c265e7780252d1006fb0fa37 (diff)
gnu: emacs-mistty: Update to 1.3.
* gnu/packages/emacs-xyz.scm (emacs-mistty): Update to 1.3. Change-Id: I4d65d9b58dd8c3ee373fd7c4feda71faedfbdb1c
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/emacs-xyz.scm56
1 files changed, 27 insertions, 29 deletions
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 8683a509ca..c96275fa8d 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -4555,36 +4555,34 @@ programs such as @code{vi}, @code{top}, @code{htop} or even @code{emacs
(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
+ (package
+ (name "emacs-mistty")
+ (version "1.3")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/szermatt/mistty")
+ (commit version)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "0wyhv6skml0p9lajhmfbwc8wm3r1107kgwyvh31dyi9m4zhc52zh"))))
+ (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+))))
+ (license license:gpl3+)))
(define-public emacs-counsel-bbdb
(package