aws-iam-authenticator: 0.4.0 -> 0.5.2

Co-authored-by: Nelson Jeppesen <50854675+NelsonJeppesen@users.noreply.github.com>
This commit is contained in:
Ivan Kovnatsky 2021-01-11 14:52:26 +02:00
parent 1c39662e63
commit c7fa45ff05
No known key found for this signature in database
GPG Key ID: 3A33FA4C82ED674F

View File

@ -1,18 +1,18 @@
{ lib, buildGoPackage, fetchFromGitHub }:
{ lib, buildGoModule, fetchFromGitHub }:
buildGoPackage rec {
buildGoModule rec {
pname = "aws-iam-authenticator";
version = "0.4.0";
goPackagePath = "github.com/kubernetes-sigs/aws-iam-authenticator";
version = "0.5.2";
src = fetchFromGitHub {
owner = "kubernetes-sigs";
repo = pname;
rev = "v${version}";
sha256 = "1ghl2vms9wmvczdl2raqhy0gffxmk24h158gjb5mlw7rggzvb7bg";
sha256 = "1xfc3a0dik4930va30sbl6687v6i5irv96fwis9lrqh5rjqnblqp";
};
vendorSha256 = null;
meta = with lib; {
homepage = "https://github.com/kubernetes-sigs/aws-iam-authenticator";
description = "AWS IAM credentials for Kubernetes authentication";