tmuxPlugins.catppucin: unstable-2024-05-16 -> 2.1.2 (#379030)
[NixPkgs.git] / pkgs / by-name / ok / okta-aws-cli / package.nix
bloba5a0ae3508890b3d6095ebb0c0c168a6c93a172c
2   lib,
3   buildGoModule,
4   fetchFromGitHub,
5 }:
7 buildGoModule rec {
8   pname = "okta-aws-cli";
9   version = "2.4.0";
11   subPackages = [ "cmd/okta-aws-cli" ];
13   src = fetchFromGitHub {
14     owner = "okta";
15     repo = "okta-aws-cli";
16     rev = "v${version}";
17     sha256 = "sha256-+QNy8slVfoC85AVIcAOF4LAHX7rGac3srRyX3zDffDs=";
18   };
20   vendorHash = "sha256-7PuB4fsclHg9YwY8ezp/pUA7c41PIzSZtEc6qjLeIcY=";
22   ldflags = [
23     "-s"
24     "-w"
25   ];
27   meta = with lib; {
28     description = "CLI for having Okta as the IdP for AWS CLI operations";
29     homepage = "https://github.com/okta/okta-aws-cli";
30     license = licenses.asl20;
31     maintainers = with maintainers; [ daniyalsuri6 ];
32     mainProgram = "okta-aws-cli";
33   };