Skip to content

Commit 5038233

Browse files
committed
neovim-node-client: create binary in $out/bin
Recreate a link to the binary, the link was lost after #380018. This fixes the build of the neovim wrapper.
1 parent 063c28c commit 5038233

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

pkgs/by-name/ne/neovim-node-client/package.nix

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,11 @@ buildNpmPackage rec {
2727
runHook postBuild
2828
'';
2929

30+
postInstall = ''
31+
mkdir $out/bin
32+
ln -s $out/lib/node_modules/neovim/node_modules/.bin/neovim-node-host $out/bin/neovim-node-host
33+
'';
34+
3035
meta = {
3136
mainProgram = "neovim-node-host";
3237
description = "Nvim msgpack API client and remote plugin provider";

0 commit comments

Comments
 (0)