This is an automated email from the git hooks/post-receive script.

guix_mirror_bot pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 60e4bb1b12 gnu: Add emacs-zoxide.
60e4bb1b12 is described below

commit 60e4bb1b12b78316d5ec6c6979b0ea51259d25ab
Author: Cayetano Santos <[email protected]>
AuthorDate: Thu Jun 26 11:14:46 2025 +0200

    gnu: Add emacs-zoxide.
    
    * gnu/packages/emacs-xyz.scm (emacs-zoxide): New variable.
    
    Change-Id: I3c59c5d511c7984c07c1988dfadeaf927b5c1bbf
    Signed-off-by: Hilton Chain <[email protected]>
---
 gnu/packages/emacs-xyz.scm | 39 +++++++++++++++++++++++++++++++++++++++
 1 file changed, 39 insertions(+)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 47bc26084c..4b4e7ce556 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -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")

Reply via email to