mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: Add emacs-fd.
* gnu/packages/emacs-xyz.scm (emacs-fd): New variable.
This commit is contained in:
parent
dffc82fa55
commit
ff814b8f23
1 changed files with 20 additions and 0 deletions
|
@ -3253,6 +3253,26 @@ (define-public emacs-grep-a-lot
|
|||
"This Emacs package allows managing multiple grep buffers.")
|
||||
(license license:gpl3+)))
|
||||
|
||||
(define-public emacs-fd
|
||||
(package
|
||||
(name "emacs-fd")
|
||||
(version "0.1.0")
|
||||
(source (origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/yqrashawn/fd-dired.git")
|
||||
(commit version)))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"1fas0fpvym2lyzybwm44gly9jz6a2fpp72yxnwfbqqjkfgk9910y"))))
|
||||
(build-system emacs-build-system)
|
||||
(home-page "https://github.com/yqrashawn/fd-dired")
|
||||
(synopsis "Dired-mode interface for fd result")
|
||||
(description "This package provides a dired-mode interface for fd's
|
||||
result.")
|
||||
(license license:gpl3+)))
|
||||
|
||||
(define-public emacs-rg
|
||||
(package
|
||||
(name "emacs-rg")
|
||||
|
|
Loading…
Reference in a new issue