kubelogin-oidc: 1.34.0 -> 1.34.1 (#447419)

This commit is contained in:
Benjamin Staffin
2025-09-30 15:01:23 +00:00
committed by GitHub
2 changed files with 8 additions and 12 deletions

View File

@@ -4,25 +4,25 @@
fetchFromGitHub,
}:
buildGoModule rec {
buildGoModule (finalAttrs: {
pname = "kubelogin";
version = "1.34.0";
version = "1.34.1";
src = fetchFromGitHub {
owner = "int128";
repo = "kubelogin";
tag = "v${version}";
hash = "sha256-eQFPuNSHSRcFLG7UbAb5A++EJawZWHaxmFt0XQVB3Ng=";
tag = "v${finalAttrs.version}";
hash = "sha256-zAIiNpzYr4aVR4O93y9S9aiGUgeg9xlj7wFn4vh43zY=";
};
subPackages = [ "." ];
ldflags = [
"-s"
"-w"
"-X main.version=v${version}"
"-X main.version=v${finalAttrs.version}"
];
vendorHash = "sha256-jzKUJkugCDwGtbEXGrjDIAbbe5yQ+1jfn22Q3whLRe4=";
vendorHash = "sha256-LF6Esggl7ygC/t9lCZGzZIZtukCbMFCAo2RFLbvEnoU=";
# test all packages
preCheck = ''
@@ -38,11 +38,11 @@ buildGoModule rec {
meta = {
description = "Kubernetes credential plugin implementing OpenID Connect (OIDC) authentication";
mainProgram = "kubectl-oidc_login";
inherit (src.meta) homepage;
inherit (finalAttrs.src.meta) homepage;
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [
benley
nevivurn
];
};
}
})

View File

@@ -11880,10 +11880,6 @@ with pkgs;
callPackage ../applications/networking/cluster/kubectl-view-allocations
{ };
kubelogin-oidc = callPackage ../by-name/ku/kubelogin-oidc/package.nix {
buildGoModule = buildGo124Module;
};
kthxbye = callPackage ../servers/monitoring/prometheus/kthxbye.nix { };
linkerd = callPackage ../applications/networking/cluster/linkerd { };