mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 07:23:20 +00:00
protoc-gen-es: fix missing node_modules directories
This workaround won't be needed anymore once #333759 is merged, which fixes the node_modules copying behavior in npm-install-hooks.
This commit is contained in:
parent
ce974f8107
commit
f6f4fc200d
@ -29,6 +29,13 @@ buildNpmPackage rec {
|
||||
npm run --workspace=packages/protoplugin build
|
||||
'';
|
||||
|
||||
# copy npm workspace modules while properly resolving symlinks
|
||||
# TODO: workaround can be removed once this is merged: https://github.com/NixOS/nixpkgs/pull/333759
|
||||
postInstall = ''
|
||||
rm -rf $out/lib/node_modules/protobuf-es/node_modules/@bufbuild
|
||||
cp -rL node_modules/@bufbuild $out/lib/node_modules/protobuf-es/node_modules/
|
||||
'';
|
||||
|
||||
passthru.updateScript = ./update.sh;
|
||||
|
||||
meta = with lib; {
|
||||
|
Loading…
Reference in New Issue
Block a user