gnu: Add emacs-quick-fasd.

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

Change-Id: I48632f2e0f7c5e62864ee73d083552600e19a6e9
This commit is contained in:
Cayetano Santos 2025-09-18 10:39:10 +02:00 committed by Ian Eure
parent c3e0d76346
commit 62cc713b0f
No known key found for this signature in database
GPG key ID: 8499AC88F1A71CF2

View file

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