gnu: emacs-mistty: Update to 1.3.

* gnu/packages/emacs-xyz.scm (emacs-mistty): Update to 1.3.

Change-Id: I4d65d9b58dd8c3ee373fd7c4feda71faedfbdb1c
This commit is contained in:
Nicolas Goaziou 2025-01-26 19:31:49 +01:00
parent 1a84b2d460
commit 59198a0794
No known key found for this signature in database
GPG key ID: DA00B4F048E92F2D

View file

@ -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