44 lines
1006 B
Nix
44 lines
1006 B
Nix
{ buildGoModule
|
|
, fetchFromGitHub
|
|
, lib
|
|
, makeWrapper
|
|
, xdg-utils
|
|
}:
|
|
buildGoModule rec {
|
|
pname = "aws-sso-cli";
|
|
version = "1.15.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "synfinatic";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
hash = "sha256-MwmSGI3yRIlafRLx9hZzMLBg09mXGBeMaZJLpk+Fy5Y=";
|
|
};
|
|
vendorHash = "sha256-3jW/8WvZHm66Hf9KLhj/LycCnJupF/zEU/2OcQKt1yg=";
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
ldflags = [
|
|
"-X main.Version=${version}"
|
|
"-X main.Tag=nixpkgs"
|
|
];
|
|
|
|
postInstall = ''
|
|
wrapProgram $out/bin/aws-sso \
|
|
--suffix PATH : ${lib.makeBinPath [ xdg-utils ]}
|
|
'';
|
|
|
|
checkFlags = [
|
|
# requires network access
|
|
"-skip=TestAWSConsoleUrl|TestAWSFederatedUrl"
|
|
];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/synfinatic/aws-sso-cli";
|
|
description = "AWS SSO CLI is a secure replacement for using the aws configure sso wizard";
|
|
license = licenses.gpl3Plus;
|
|
maintainers = with maintainers; [ devusb ];
|
|
mainProgram = "aws-sso";
|
|
};
|
|
}
|