From 59198a07949c7540a1a20644e8ccf7fe8eae5ccd Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Sun, 26 Jan 2025 19:31:49 +0100 Subject: [PATCH] gnu: emacs-mistty: Update to 1.3. * gnu/packages/emacs-xyz.scm (emacs-mistty): Update to 1.3. Change-Id: I4d65d9b58dd8c3ee373fd7c4feda71faedfbdb1c --- gnu/packages/emacs-xyz.scm | 56 ++++++++++++++++++-------------------- 1 file changed, 27 insertions(+), 29 deletions(-) diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 8683a509ca29046d58b5a61dd0baafd9af608c13..c96275fa8d8c4824b4099f0f51f3b93c860c9303 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