Merge pull request #262062 from fabaff/aws-iam-authenticator-bump

aws-iam-authenticator: 0.6.11 -> 0.6.12

authored by Sarah Brofeldt and committed by GitHub 352d3748 8d710f23

+14 -9
+14 -9
pkgs/tools/security/aws-iam-authenticator/default.nix
··· 1 - { lib, buildGoModule, fetchFromGitHub }: 2 3 buildGoModule rec { 4 pname = "aws-iam-authenticator"; 5 - version = "0.6.11"; 6 7 src = fetchFromGitHub { 8 owner = "kubernetes-sigs"; 9 repo = pname; 10 - rev = "v${version}"; 11 - hash = "sha256-4bZnGgf/H2/uLhh8ip8rrA+U0vA+1SO5uhjLK40j3wE="; 12 }; 13 14 vendorHash = "sha256-RcZqnyZtonE4qeu+llL1OPGPG93/Rx8ESWM5wapZ1BM="; 15 16 ldflags = let PKG = "sigs.k8s.io/aws-iam-authenticator"; in [ 17 - "-s" "-w" 18 - "-X ${PKG}/pkg.Version=${version}" 19 - "-X ${PKG}/pkg.BuildDate=1970-01-01T01:01:01Z" 20 - "-X ${PKG}/pkg.CommitID=${version}" 21 ]; 22 23 subPackages = [ "cmd/aws-iam-authenticator" ]; ··· 25 meta = with lib; { 26 homepage = "https://github.com/kubernetes-sigs/aws-iam-authenticator"; 27 description = "AWS IAM credentials for Kubernetes authentication"; 28 license = licenses.asl20; 29 - maintainers = [ maintainers.srhb ]; 30 }; 31 }
··· 1 + { lib 2 + , buildGoModule 3 + , fetchFromGitHub 4 + }: 5 6 buildGoModule rec { 7 pname = "aws-iam-authenticator"; 8 + version = "0.6.12"; 9 10 src = fetchFromGitHub { 11 owner = "kubernetes-sigs"; 12 repo = pname; 13 + rev = "refs/tags/v${version}"; 14 + hash = "sha256-IIlAsxxEYjR7+wdWExdsQAH0x4yOXZ+bVQWwn7mrhRw="; 15 }; 16 17 vendorHash = "sha256-RcZqnyZtonE4qeu+llL1OPGPG93/Rx8ESWM5wapZ1BM="; 18 19 ldflags = let PKG = "sigs.k8s.io/aws-iam-authenticator"; in [ 20 + "-s" 21 + "-w" 22 + "-X=${PKG}/pkg.Version=${version}" 23 + "-X=${PKG}/pkg.BuildDate=1970-01-01T01:01:01Z" 24 + "-X ?${PKG}/pkg.CommitID=${version}" 25 ]; 26 27 subPackages = [ "cmd/aws-iam-authenticator" ]; ··· 29 meta = with lib; { 30 homepage = "https://github.com/kubernetes-sigs/aws-iam-authenticator"; 31 description = "AWS IAM credentials for Kubernetes authentication"; 32 + changelog = "https://github.com/kubernetes-sigs/aws-iam-authenticator/releases/tag/v${version}"; 33 license = licenses.asl20; 34 + maintainers = with maintainers; [ srhb ]; 35 }; 36 }