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 62cc713b0f gnu: Add emacs-quick-fasd.
62cc713b0f is described below

commit 62cc713b0f9028c448e8a3f24262f3e9003c308c
Author: Cayetano Santos <[email protected]>
AuthorDate: Thu Sep 18 10:39:10 2025 +0200

    gnu: Add emacs-quick-fasd.
    
    * gnu/packages/emacs-xyz.scm (emacs-quick-fasd): New variable.
    
    Change-Id: I48632f2e0f7c5e62864ee73d083552600e19a6e9
---
 gnu/packages/emacs-xyz.scm | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index ab71cba873..2d8aae762e 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -41764,6 +41764,29 @@ supports generation of phonetic and numeric 
passwords.")
 text into a QR Code and show it in a separate buffer.")
     (license license:gpl3+)))
 
+(define-public emacs-quick-fasd
+  (package
+    (name "emacs-quick-fasd")
+    (version "1.0.1")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+              (url "https://github.com/jamescherti/quick-fasd.el/";)
+              (commit version)))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32
+         "1fsl6l67jf8fm5h6i5qxqvibzssbiyyjzchq3r5sbqry3d8yx3mk"))))
+    (build-system emacs-build-system)
+    (arguments (list #:tests? #f))      ;no tests
+    (home-page "https://github.com/jamescherti/quick-fasd.el/";)
+    (synopsis "Navigate file system within Emacs by using @code{fasd}")
+    (description
+     "@code{quick-fasd} integrates the @code{fasd} tool within the Emacs
+environment, providing fast access to frequently used files and directories.")
+    (license license:gpl3+)))
+
 (define-public emacs-quiet
   (package
     (name "emacs-quiet")

Reply via email to