nixpkgs-suyu/pkgs/tools/admin/pulumi-packages/pulumi-language-nodejs.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

31 lines
693 B
Nix
Raw Normal View History

{ buildGoModule
, pulumi
, nodejs
}:
buildGoModule rec {
inherit (pulumi) version src sdkVendorHash;
pname = "pulumi-language-nodejs";
sourceRoot = "${src.name}/sdk/nodejs/cmd/pulumi-language-nodejs";
2023-11-08 15:24:31 +01:00
vendorHash = "sha256-gEOVtAyn7v8tsRU11NgrD3swMFFBxOTIjMWCqSSvHlI=";
2023-10-24 18:06:00 +02:00
postPatch = ''
# Gives github.com/pulumi/pulumi/pkg/v3: is replaced in go.mod, but not marked as replaced in vendor/modules.txt etc
substituteInPlace language_test.go \
--replace "TestLanguage" \
"SkipTestLanguage"
'';
ldflags = [
"-s"
"-w"
"-X github.com/pulumi/pulumi/sdk/v3/go/common/version.Version=${version}"
];
nativeCheckInputs = [
nodejs
];
}