Support current SDKs
This commit is contained in:
parent
85faa13ec2
commit
56f9dbc255
|
@ -14,9 +14,33 @@
|
||||||
devShells = forEachSupportedSystem ({ pkgs }: {
|
devShells = forEachSupportedSystem ({ pkgs }: {
|
||||||
default = pkgs.mkShell {
|
default = pkgs.mkShell {
|
||||||
packages = with pkgs; [
|
packages = with pkgs; [
|
||||||
|
# Pulumi plus:
|
||||||
|
# pulumi-watch
|
||||||
|
# pulumi-analyzer-* utilities
|
||||||
|
# pulumi-language-* utilities
|
||||||
|
# pulumi-resource-* utilities
|
||||||
pulumi-bin
|
pulumi-bin
|
||||||
|
|
||||||
|
# Python SDK
|
||||||
python311
|
python311
|
||||||
|
|
||||||
|
# Go SDK
|
||||||
|
go_1_20
|
||||||
|
|
||||||
|
# Node.js SDK
|
||||||
|
nodejs
|
||||||
|
|
||||||
|
# .NET SDK
|
||||||
|
dotnet-sdk_6
|
||||||
|
|
||||||
|
# Java SDK
|
||||||
|
jdk
|
||||||
|
maven
|
||||||
|
|
||||||
|
# Kubernetes
|
||||||
kubectl
|
kubectl
|
||||||
|
|
||||||
|
# Miscellaneous utilities
|
||||||
jq
|
jq
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue