From 67fa5bb2168d3e420a3feee841cf8182fe5affbb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment?= Date: Sun, 26 Apr 2026 15:29:33 -0700 Subject: [PATCH] vimPlugins.fzf-wrapped: add missing meta attribute --- .../vim/plugins/non-generated/fzf-wrapper/default.nix | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/pkgs/applications/editors/vim/plugins/non-generated/fzf-wrapper/default.nix b/pkgs/applications/editors/vim/plugins/non-generated/fzf-wrapper/default.nix index c22afcf7e9ae..ed57ac41a7f1 100644 --- a/pkgs/applications/editors/vim/plugins/non-generated/fzf-wrapper/default.nix +++ b/pkgs/applications/editors/vim/plugins/non-generated/fzf-wrapper/default.nix @@ -11,4 +11,15 @@ vimUtils.buildVimPlugin { postInstall = '' ln -s ${fzf}/bin/fzf $target/bin/fzf ''; + + meta = { + inherit (fzf.meta) + changelog + description + homepage + license + platforms + ; + maintainers = [ ]; + }; }