From c251d19cb779b3b90bbab0802665a8ebb7d4f7bc Mon Sep 17 00:00:00 2001 From: Marcin Owsiany Date: Mon, 16 Sep 2024 09:55:49 +0200 Subject: [PATCH] Bump go, install docker-buildx and goreleaser. (#71) --- README.md | 4 +++- flake.nix | 4 +++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 5f4c12a..9fa5c63 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ Isolated and reproducible development environment for the Stackrox stack using N Compilers / runtimes: * `gcc` -* `golang 1.21.x` +* `golang 1.22.x` * `openjdk 11` * `python 3.10` @@ -28,9 +28,11 @@ Applications: * `colima` (macOS) * `detect-secrets` * `docker` (macOS) +* `docker-buildx` * `envsubst` (and other gettext utilities) * `gcloud` * `go-jsonnet` and bundler +* `goreleaser` * `gradle` * `helm` * `jq` diff --git a/flake.nix b/flake.nix index fce059a..c61fdbd 100644 --- a/flake.nix +++ b/flake.nix @@ -110,8 +110,10 @@ bfg-repo-cleaner bitwarden-cli cachix + docker-buildx gcc gnumake + goreleaser jq jsonnet-bundler k9s @@ -121,7 +123,7 @@ prometheus wget ; - go = pkgs.go_1_21; + go = pkgs.go_1_22; helm = pkgs.kubernetes-helm; jsonnet = pkgs.go-jsonnet; python = pkgs.python3.withPackages python-pkgs;