mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 19:51:17 +00:00
52 lines
1.3 KiB
Nix
52 lines
1.3 KiB
Nix
{ buildGoModule
|
|
, fetchFromGitHub
|
|
, getent
|
|
, lib
|
|
, makeWrapper
|
|
, stdenv
|
|
, xdg-utils
|
|
}:
|
|
buildGoModule rec {
|
|
pname = "aws-sso-cli";
|
|
version = "1.17.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "synfinatic";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
hash = "sha256-VEI+vCNeNoFOE+2j/OUjRszXsUQP2E1iUdPUW9X3tHk=";
|
|
};
|
|
vendorHash = "sha256-a57RtK8PxwaRrSA6W6R//GacZ+pK8mBi4ZASS5NvShE=";
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
ldflags = [
|
|
"-X main.Version=${version}"
|
|
"-X main.Tag=nixpkgs"
|
|
];
|
|
|
|
postInstall = ''
|
|
wrapProgram $out/bin/aws-sso \
|
|
--suffix PATH : ${lib.makeBinPath [ xdg-utils ]}
|
|
'';
|
|
|
|
nativeCheckInputs = [ getent ];
|
|
|
|
checkFlags = let
|
|
skippedTests = [
|
|
"TestAWSConsoleUrl"
|
|
"TestAWSFederatedUrl"
|
|
"TestServerWithSSL" # https://github.com/synfinatic/aws-sso-cli/issues/1030 -- remove when version >= 2.x
|
|
] ++ lib.optionals stdenv.isDarwin [ "TestDetectShellBash" ];
|
|
in
|
|
[ "-skip=^${builtins.concatStringsSep "$|^" skippedTests}$" ];
|
|
|
|
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";
|
|
};
|
|
}
|