me
/
guix
Archived
1
0
Fork 0

gnu: Add emacs-fzf.

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

Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
jgart via Guix-patches via 2022-12-19 21:29:16 -06:00 committed by Nicolas Goaziou
parent 49b68c9842
commit 9dbd12f629
No known key found for this signature in database
GPG Key ID: DA00B4F048E92F2D
1 changed files with 32 additions and 0 deletions

View File

@ -1283,6 +1283,38 @@ leveraging built-in functionality.")
(license (list license:gpl3+
license:fdl1.3+)))) ; GFDLv1.3+ for the manual
(define-public emacs-fzf
(let ((commit "21912ebc7e1084aa88c9d8b7715e782a3978ed23")
(revision "0"))
(package
(name "emacs-fzf")
(version (git-version "0.0.2" revision commit))
(source (origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/bling/fzf.el")
(commit commit)))
(file-name (git-file-name name version))
(sha256
(base32
"0gdqjh8996hb06bnnyhi94k69mjfrzyfgq00a9s4wwagv28sqmkj"))))
(build-system emacs-build-system)
(arguments
(list
#:tests? #f ;no tests
#:phases
#~(modify-phases %standard-phases
(add-after 'unpack 'patch-fzf-executable
(lambda* (#:key inputs #:allow-other-keys)
(emacs-substitute-variables "fzf.el"
("fzf/executable" (search-input-file inputs "/bin/fzf"))))))))
(inputs (list fzf))
(home-page "https://github.com/bling/fzf.el")
(synopsis "Emacs front-end for Fzf finder")
(description "This package provides an Emacs front-end for Fzf general
purpose finder.")
(license license:gpl3+))))
(define-public emacs-minions
(package
(name "emacs-minions")