aws-sso-creds: init at 1.4.0

This commit is contained in:
Joseph LaFreniere 2023-01-08 20:55:47 -06:00
parent 7d3365445a
commit 9574bb165a
No known key found for this signature in database
GPG key ID: EE236AA0141EFCA3
2 changed files with 35 additions and 0 deletions

View 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";
};
}

View file

@ -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 { };