Files
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

58 lines
1.2 KiB
Nix

{
lib,
buildGoModule,
pulumi,
bash,
nodejs,
python3,
}:
buildGoModule rec {
pname = "pulumi-nodejs";
inherit (pulumi) version src;
sourceRoot = "${src.name}/sdk/nodejs/cmd/pulumi-language-nodejs";
vendorHash = "sha256-Q5Pk2f3EAiM4oit1vhc+PMEuMxdbrKAue3e0pnrZw2c=";
ldflags = [
"-s"
"-w"
"-X=github.com/pulumi/pulumi/sdk/v3/go/common/version.Version=${version}"
];
checkFlags = [
"-skip=^${
lib.concatStringsSep "$|^" [
"TestLanguage"
"TestGetProgramDependencies"
]
}$"
];
nativeCheckInputs = [
python3 # for TestNonblockingStdout
nodejs
];
# For patchShebangsAuto (see scripts copied in postInstall).
buildInputs = [
bash
];
postInstall = ''
cp -t "$out/bin" \
../../dist/pulumi-resource-pulumi-nodejs \
../../dist/pulumi-analyzer-policy
'';
meta = {
homepage = "https://www.pulumi.com/docs/iac/languages-sdks/javascript/";
description = "Language host for Pulumi programs written in TypeScript & JavaScript (Node.js)";
license = lib.licenses.asl20;
mainProgram = "pulumi-language-nodejs";
maintainers = with lib.maintainers; [
tie
];
};
}