1
1
Fork 0
mirror of https://github.com/the-nix-way/dev-templates synced 2024-05-06 00:26:04 +02:00

Support current SDKs

This commit is contained in:
Luc Perkins 2023-07-13 15:45:24 -07:00
parent 85faa13ec2
commit 56f9dbc255
No known key found for this signature in database
GPG Key ID: CED8419FB058467A

View File

@ -14,9 +14,33 @@
devShells = forEachSupportedSystem ({ pkgs }: {
default = pkgs.mkShell {
packages = with pkgs; [
# Pulumi plus:
# pulumi-watch
# pulumi-analyzer-* utilities
# pulumi-language-* utilities
# pulumi-resource-* utilities
pulumi-bin
# Python SDK
python311
# Go SDK
go_1_20
# Node.js SDK
nodejs
# .NET SDK
dotnet-sdk_6
# Java SDK
jdk
maven
# Kubernetes
kubectl
# Miscellaneous utilities
jq
];
};