eas-cli: add nodejs to bin path

This commit is contained in:
azban
2026-03-23 18:18:48 -06:00
parent 56f9fb516c
commit dccadf1f7a
+3
View File
@@ -7,6 +7,7 @@
yarnBuildHook,
nodejs,
jq,
makeWrapper,
}:
stdenvNoCC.mkDerivation (finalAttrs: {
pname = "eas-cli";
@@ -29,6 +30,7 @@ stdenvNoCC.mkDerivation (finalAttrs: {
yarnBuildHook
nodejs
jq
makeWrapper
];
postPatch = ''
@@ -52,6 +54,7 @@ stdenvNoCC.mkDerivation (finalAttrs: {
postFixup = ''
mkdir -p $out/bin
ln -sf $out/lib/node_modules/eas-cli-root/packages/eas-cli/bin/run $out/bin/eas
wrapProgram $out/bin/eas --suffix PATH : ${lib.makeBinPath [ nodejs ]}
'';
meta = {