mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-12 03:56:17 +03:00
Merge pull request #44819 from imalsogreg/okta-aws-init
aws-okta: init at 0.19.0
This commit is contained in:
commit
b92956d4c6
26
pkgs/tools/security/aws-okta/default.nix
Normal file
26
pkgs/tools/security/aws-okta/default.nix
Normal file
@ -0,0 +1,26 @@
|
||||
{ buildGoPackage, fetchFromGitHub, stdenv }:
|
||||
buildGoPackage rec {
|
||||
name = "aws-okta-${version}";
|
||||
version = "0.19.0";
|
||||
|
||||
goPackagePath = "github.com/segmentio/aws-okta";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "segmentio";
|
||||
repo = "aws-okta";
|
||||
rev = "v${version}";
|
||||
sha256 = "1c9mn492yva7cdsx2b0n8g2fdl9660v3xma0v82jzb0c9y9rq0ms";
|
||||
};
|
||||
|
||||
buildFlags = "--tags release";
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
inherit version;
|
||||
description = "aws-vault like tool for Okta authentication";
|
||||
license = licenses.mit;
|
||||
maintainers = [maintainers.imalsogreg];
|
||||
platforms = platforms.all;
|
||||
homepage = https://github.com/segmentio/aws-okta;
|
||||
downloadPage = "https://github.com/segmentio/aws-okta";
|
||||
};
|
||||
}
|
@ -575,6 +575,8 @@ with pkgs;
|
||||
|
||||
awslogs = callPackage ../tools/admin/awslogs { };
|
||||
|
||||
aws-okta = callPackage ../tools/security/aws-okta { };
|
||||
|
||||
aws-rotate-key = callPackage ../tools/admin/aws-rotate-key { };
|
||||
|
||||
aws_shell = pythonPackages.callPackage ../tools/admin/aws_shell { };
|
||||
|
Loading…
Reference in New Issue
Block a user