Skip to content

Commit 5fc41a2

Browse files
author
BirdeeHub
committed
ci(flake): fix vimPlugins output
1 parent 8b584f0 commit 5fc41a2

1 file changed

Lines changed: 6 additions & 4 deletions

File tree

flake.nix

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,10 +36,12 @@
3636
}) l_pkg_enum);
3737
in l_pkg_main // l_pkg_sets // {
3838
vimPlugins = prev.vimPlugins // {
39-
${APPNAME} = final.neovimUtils.buildNeovimPlugin {
40-
pname = APPNAME;
41-
version = "dev";
42-
src = self;
39+
${APPNAME} = (final.neovimUtils.buildNeovimPlugin { pname = APPNAME; }).overrideAttrs {
40+
extraConfig = ''
41+
-- to create a flat hierarchy
42+
lua_modules_path = "lua"
43+
lib_modules_path = "lua"
44+
'';
4345
};
4446
};
4547
};

0 commit comments

Comments
 (0)