1
Fork 0
mirror of https://https.git.savannah.gnu.org/git/guix.git/ synced 2025-07-13 10:30:43 +02:00

gnu: Add emacs-zoxide.

* gnu/packages/emacs-xyz.scm (emacs-zoxide): New variable.

Change-Id: I3c59c5d511c7984c07c1988dfadeaf927b5c1bbf
Signed-off-by: Hilton Chain <hako@ultrarare.space>
This commit is contained in:
Cayetano Santos 2025-06-26 11:14:46 +02:00 committed by Hilton Chain
parent 482ec7da7b
commit 60e4bb1b12
No known key found for this signature in database
GPG key ID: ACC66D09CA528292

View file

@ -30418,6 +30418,45 @@ and the Zotero research assistant: Insertion of links to Zotero items into an
Org-mode file, and citations of Zotero items in Pandoc Markdown files.")
(license license:gpl3+)))
(define-public emacs-zoxide
(package
(name "emacs-zoxide")
(version "1.2.3")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://git.sr.ht/~vonfry/zoxide.el/")
(commit version)))
(file-name (git-file-name name version))
(sha256
(base32 "1cqpldrdr219kdiraf6pcxizfiylnljri4ghwvblk579xvijnbgr"))))
(build-system emacs-build-system)
(arguments
(list
#:phases
#~(modify-phases %standard-phases
(add-before 'check 'avoid-remote-installs
(lambda _
(substitute* ".ci/check.el"
(("\\(load .*" all)
" ")
(("package-install")
"require"))))
(add-after 'unpack 'patch-bin-path
(lambda* (#:key inputs #:allow-other-keys)
(emacs-substitute-variables "zoxide.el"
("zoxide-executable"
(search-input-file inputs "bin/zoxide"))))))))
(native-inputs (list emacs-package-lint))
(inputs (list zoxide))
(home-page "https://git.sr.ht/~vonfry/zoxide.el/")
(synopsis "Zoxide frontend for Emacs")
(description
"This package provides an Emacs interface to the command line tool
@code{zoxide}.")
(license license:gpl3+)))
(define-public emacs-evil-multiedit
(package
(name "emacs-evil-multiedit")