mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
aws-sso-creds: init at 1.4.0
This commit is contained in:
parent
7d3365445a
commit
9574bb165a
2 changed files with 35 additions and 0 deletions
33
pkgs/tools/admin/aws-sso-creds/default.nix
Normal file
33
pkgs/tools/admin/aws-sso-creds/default.nix
Normal file
|
@ -0,0 +1,33 @@
|
|||
{ buildGoModule
|
||||
, fetchFromGitHub
|
||||
, lib
|
||||
, makeWrapper
|
||||
, xdg-utils
|
||||
}:
|
||||
buildGoModule rec {
|
||||
pname = "aws-sso-creds";
|
||||
version = "1.4.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "jaxxstorm";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-iyTdVvbqewLPLJB0LjeMB0HvLTi4B3B/HDCvgSlZoNE=";
|
||||
};
|
||||
vendorSha256 = "sha256-SIsM3S9i5YKj8DvE90DxxinqZkav+1gIha1xZiDBuHQ=";
|
||||
|
||||
nativeBuildInputs = [ makeWrapper ];
|
||||
|
||||
postInstall = ''
|
||||
wrapProgram $out/bin/aws-sso-creds \
|
||||
--suffix PATH : ${lib.makeBinPath [ xdg-utils ]}
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/jaxxstorm/aws-sso-creds";
|
||||
description = "Get AWS SSO temporary creds from an SSO profile";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ lafrenierejm ];
|
||||
mainProgram = "aws-sso-creds";
|
||||
};
|
||||
}
|
|
@ -2684,6 +2684,8 @@ with pkgs;
|
|||
|
||||
aws-sso-cli = callPackage ../tools/admin/aws-sso-cli { };
|
||||
|
||||
aws-sso-creds = callPackage ../tools/admin/aws-sso-creds { };
|
||||
|
||||
aws-vault = callPackage ../tools/admin/aws-vault { };
|
||||
|
||||
aws-workspaces = callPackage ../applications/networking/remote/aws-workspaces { };
|
||||
|
|
Loading…
Reference in a new issue