Skip to content

Commit

Permalink
change nvim pname
Browse files Browse the repository at this point in the history
  • Loading branch information
viperML committed Aug 14, 2024
1 parent 5b59cfe commit f656458
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
6 changes: 3 additions & 3 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 7 additions & 0 deletions modules/wrapper-manager/neovim/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
pkgs,
lib,
inputs',
config,
...
}: {
wrappers.neovim = let
Expand Down Expand Up @@ -67,5 +68,11 @@
"--cmd"
"set packpath^=${packDir} | set rtp^=${packDir})"
];
overrideAttrs = old: let
pname = config.wrappers.neovim.env.NVIM_APPNAME.value;
inherit (config.wrappers.neovim.basePackage) version;
in {
name = "${pname}-${version}";
};
};
}

0 comments on commit f656458

Please sign in to comment.