neovim-node-client: create binary in $out/bin

Recreate a link to the binary, the link was lost after https://github.com/NixOS/nixpkgs/pull/380018.
This fixes the build of the neovim wrapper.
This commit is contained in:
r-vdp 2025-02-08 00:51:50 +01:00
parent 063c28cb63
commit 503823388f
No known key found for this signature in database

View File

@ -27,6 +27,11 @@ buildNpmPackage rec {
runHook postBuild
'';
postInstall = ''
mkdir $out/bin
ln -s $out/lib/node_modules/neovim/node_modules/.bin/neovim-node-host $out/bin/neovim-node-host
'';
meta = {
mainProgram = "neovim-node-host";
description = "Nvim msgpack API client and remote plugin provider";