nixpkgs/pkgs/tools/admin/okta-aws-cli/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
672 B
Nix
Raw Normal View History

2023-05-15 23:26:45 +02:00
{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "okta-aws-cli";
2023-09-08 22:50:37 +02:00
version = "1.2.2";
2023-05-15 23:26:45 +02:00
subPackages = [ "cmd/okta-aws-cli" ];
src = fetchFromGitHub {
owner = "okta";
repo = "okta-aws-cli";
rev = "v${version}";
2023-09-08 22:50:37 +02:00
sha256 = "sha256-GF+2xPoc9dztB7w6pOLwiZ6D9b4P1YEJrZxL33j4aew=";
2023-05-15 23:26:45 +02:00
};
2023-07-02 05:01:00 +02:00
vendorHash = "sha256-AJmQxMRj602yodzIdhZV+R22KxnEIbT9iSz/5G5T6r8=";
2023-05-15 23:26:45 +02:00
ldflags = [ "-s" "-w" ];
meta = with lib; {
description = "A CLI for having Okta as the IdP for AWS CLI operations";
homepage = "https://github.com/okta/okta-aws-cli";
license = licenses.asl20;
maintainers = with maintainers; [ daniyalsuri6 ];
};
}