-
Notifications
You must be signed in to change notification settings - Fork 99
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This commit bumps all nix dependencies via `nix flake update`. The primary aim here is to bump our go version to 1.22 in order to support installing `setup-envtest` and Kubernetes 1.30. See kubernetes-sigs/controller-runtime@4c2442e
- Loading branch information
1 parent
137d44d
commit fb0912f
Showing
7 changed files
with
51 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
{ buildGoModule | ||
, fetchFromGitHub | ||
, lib | ||
}: | ||
|
||
buildGoModule rec { | ||
pname = "setup-envtest"; | ||
version = "0.18.2"; | ||
|
||
# Don't run tests. | ||
doCheck = false; | ||
doInstallCheck = false; | ||
|
||
src = fetchFromGitHub { | ||
owner = "kubernetes-sigs"; | ||
repo = "controller-runtime"; | ||
rev = "v${version}"; | ||
hash = "sha256-fQgWwndxzBIi3zsNMYvFDXjetnaQF0NNK+qW8j4Wn/M="; | ||
}; | ||
|
||
sourceRoot = "source/tools/setup-envtest"; | ||
|
||
vendorHash = "sha256-Xr5b/CRz/DMmoc4bvrEyAZcNufLIZOY5OGQ6yw4/W9k="; | ||
|
||
meta = with lib; { | ||
description = "A small tool that manages binaries for envtest"; | ||
homepage = "https://github.com/kubernetes-sigs/controller-runtime/tree/main/tools/setup-envtest"; | ||
license = licenses.asl20; | ||
mainProgram = "setup-envtest"; | ||
}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.