neovim-node-client: create binary in $out/bin (#380235)

This commit is contained in:
Gaétan Lepage 2025-02-08 01:44:11 +01:00 committed by GitHub
commit 2dcc7bb1cb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

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";