From c9e5d6c3d8ce34f7086808d24f010cec64c8fe04 Mon Sep 17 00:00:00 2001 From: Frede Braendstrup Date: Wed, 3 Sep 2025 08:58:50 +0200 Subject: [PATCH] vimPlugins.perfanno-nvim: remove gperf dependency gperf is not a hard dependency, and it would be incorrect to require gperf be installed via nix on a non nixos system. --- pkgs/applications/editors/vim/plugins/overrides.nix | 2 -- 1 file changed, 2 deletions(-) diff --git a/pkgs/applications/editors/vim/plugins/overrides.nix b/pkgs/applications/editors/vim/plugins/overrides.nix index a6b3d06c1468..55e24275b3ce 100644 --- a/pkgs/applications/editors/vim/plugins/overrides.nix +++ b/pkgs/applications/editors/vim/plugins/overrides.nix @@ -2910,8 +2910,6 @@ assertNoAdditions { }); perfanno-nvim = super.perfanno-nvim.overrideAttrs (old: { - dependencies = [ gperf ]; - meta = old.meta // { maintainers = with lib.maintainers; [ fredeb ]; };