diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index ab71cba8739..2d8aae762e2 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")