From 011a435bd281c2abd5e24b57b82d630111b548d8 Mon Sep 17 00:00:00 2001 From: m3l6h <8094643+M3L6H@users.noreply.github.com> Date: Sat, 16 Aug 2025 06:16:41 -0500 Subject: [PATCH 1/4] (vimPlugins.nvzone-volt): fix pname The nvzone plugins were named with an `nvzone` prefix due to how generic the individual plugins are: https://github.com/NixOS/nixpkgs/pull/357120 This caused their pnames to also have an `nvzone` prefix. However, plugin managers like Lazy.nvim expect pname to match the name of the git repository, hence the override of pname in this commit. --- pkgs/applications/editors/vim/plugins/overrides.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/applications/editors/vim/plugins/overrides.nix b/pkgs/applications/editors/vim/plugins/overrides.nix index eca499288cb4..7fa406a6a28c 100644 --- a/pkgs/applications/editors/vim/plugins/overrides.nix +++ b/pkgs/applications/editors/vim/plugins/overrides.nix @@ -2786,6 +2786,11 @@ in dependencies = [ self.nvzone-volt ]; }; + nvzone-volt = super.nvzone-volt.overrideAttrs { + # Plugin managers like Lazy.nvim expect pname to match the name of the git repository + pname = "volt"; + }; + obsidian-nvim = super.obsidian-nvim.overrideAttrs { checkInputs = with self; [ # Optional pickers From d96a97a70bdd5ba91a2a97fa8997e938596781fa Mon Sep 17 00:00:00 2001 From: Michael Hollingworth <8094643+M3L6H@users.noreply.github.com> Date: Sat, 16 Aug 2025 10:34:28 -0500 Subject: [PATCH 2/4] (vimPlugins.nvzone-typr): fix name The nvzone plugins were named with an `nvzone` prefix due to how generic the individual plugins are: NixOS#357120 This caused their pnames to also have an `nvzone` prefix. However, plugin managers like Lazy.nvim expect pname to match the name of the git repository, hence the override of pname in this commit. --- pkgs/applications/editors/vim/plugins/overrides.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/applications/editors/vim/plugins/overrides.nix b/pkgs/applications/editors/vim/plugins/overrides.nix index 7fa406a6a28c..aed405dc3cab 100644 --- a/pkgs/applications/editors/vim/plugins/overrides.nix +++ b/pkgs/applications/editors/vim/plugins/overrides.nix @@ -2783,6 +2783,8 @@ in }; nvzone-typr = super.nvzone-typr.overrideAttrs { + # Plugin managers like Lazy.nvim expect pname to maych the name of the git repository + pname = "typr"; dependencies = [ self.nvzone-volt ]; }; From 4ba04bf8d1314c6dc0e126122aaed036f6a67b1c Mon Sep 17 00:00:00 2001 From: Michael Hollingworth <8094643+M3L6H@users.noreply.github.com> Date: Sat, 16 Aug 2025 10:36:37 -0500 Subject: [PATCH 3/4] (vimPlugins.nvzone-menu): fix pname The nvzone plugins were named with an `nvzone` prefix due to how generic the individual plugins are: NixOS#357120 This caused their pnames to also have an `nvzone` prefix. However, plugin managers like Lazy.nvim expect pname to match the name of the git repository, hence the override of pname in this commit. --- pkgs/applications/editors/vim/plugins/overrides.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/applications/editors/vim/plugins/overrides.nix b/pkgs/applications/editors/vim/plugins/overrides.nix index aed405dc3cab..7b96574d6ae7 100644 --- a/pkgs/applications/editors/vim/plugins/overrides.nix +++ b/pkgs/applications/editors/vim/plugins/overrides.nix @@ -2767,6 +2767,8 @@ in }; nvzone-menu = super.nvzone-menu.overrideAttrs { + # Plugin managers like Lazy.nvim expect pname to match the name of the git repository + pname = "menu"; checkInputs = with self; [ # Optional integrations nvim-tree-lua From 73d909b04f542bf5b51927e9366c88990862453f Mon Sep 17 00:00:00 2001 From: Michael Hollingworth <8094643+M3L6H@users.noreply.github.com> Date: Sat, 16 Aug 2025 10:38:10 -0500 Subject: [PATCH 4/4] (vimPlugins.nvzone-minty): fix pname The nvzone plugins were named with an `nvzone` prefix due to how generic the individual plugins are: NixOS#357120 This caused their pnames to also have an `nvzone` prefix. However, plugin managers like Lazy.nvim expect pname to match the name of the git repository, hence the override of pname in this commit. --- pkgs/applications/editors/vim/plugins/overrides.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pkgs/applications/editors/vim/plugins/overrides.nix b/pkgs/applications/editors/vim/plugins/overrides.nix index 7b96574d6ae7..07904e06871f 100644 --- a/pkgs/applications/editors/vim/plugins/overrides.nix +++ b/pkgs/applications/editors/vim/plugins/overrides.nix @@ -2781,11 +2781,13 @@ in }; nvzone-minty = super.nvzone-minty.overrideAttrs { + # Plugin managers like Lazy.nvim expect pname to match the name of the git repository + pname = "minty"; dependencies = [ self.nvzone-volt ]; }; nvzone-typr = super.nvzone-typr.overrideAttrs { - # Plugin managers like Lazy.nvim expect pname to maych the name of the git repository + # Plugin managers like Lazy.nvim expect pname to match the name of the git repository pname = "typr"; dependencies = [ self.nvzone-volt ]; };