From 56f9dbc255c2f7c4dc2f933aeb6b3cac7049aa90 Mon Sep 17 00:00:00 2001 From: Luc Perkins Date: Thu, 13 Jul 2023 15:45:24 -0700 Subject: [PATCH] Support current SDKs --- pulumi/flake.nix | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/pulumi/flake.nix b/pulumi/flake.nix index f414307..68c4c26 100644 --- a/pulumi/flake.nix +++ b/pulumi/flake.nix @@ -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 ]; };