mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-09-16 12:20:10 +00:00
26 lines
470 B
Nix
26 lines
470 B
Nix
{
|
|
vimUtils,
|
|
fzf,
|
|
}:
|
|
# Mainly used as a dependency for fzf-vim. Wraps the fzf program as a vim
|
|
# plugin, since part of the fzf vim plugin is included in the main fzf
|
|
# program.
|
|
vimUtils.buildVimPlugin {
|
|
inherit (fzf) src version;
|
|
pname = "fzf";
|
|
postInstall = ''
|
|
ln -s ${fzf}/bin/fzf $target/bin/fzf
|
|
'';
|
|
|
|
meta = {
|
|
inherit (fzf.meta)
|
|
changelog
|
|
description
|
|
homepage
|
|
license
|
|
platforms
|
|
;
|
|
maintainers = [ ];
|
|
};
|
|
}
|