nixpkgs/pkgs/tools/admin/aws-sso-cli/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

39 lines
905 B
Nix
Raw Normal View History

2022-07-13 14:23:42 +01:00
{ buildGoModule
, fetchFromGitHub
, lib
, makeWrapper
, xdg-utils
}:
buildGoModule rec {
pname = "aws-sso-cli";
2023-03-07 19:23:02 +00:00
version = "1.9.10";
2022-06-10 01:16:13 +01:00
2022-07-13 14:23:42 +01:00
src = fetchFromGitHub {
owner = "synfinatic";
repo = pname;
rev = "v${version}";
2023-03-07 19:23:02 +00:00
sha256 = "sha256-hDXCH5B4bc0SKv/qzk92bPm366LmdYWTuVVn8KI0avo=";
2022-07-13 14:23:42 +01:00
};
2023-03-07 19:23:02 +00:00
vendorHash = "sha256-myjHRZXTjsLXD8kibcdf1/Nhvx50fDsFtmZd63DpiiI=";
2022-06-10 01:16:13 +01:00
2022-07-13 14:23:42 +01:00
nativeBuildInputs = [ makeWrapper ];
2023-02-26 01:45:21 +00:00
ldflags = [
"-X main.Version=${version}"
"-X main.Tag=nixpkgs"
];
2022-07-13 14:23:42 +01:00
postInstall = ''
wrapProgram $out/bin/aws-sso \
--suffix PATH : ${lib.makeBinPath [ xdg-utils ]}
2022-07-13 14:23:42 +01:00
'';
2022-06-10 01:16:13 +01:00
2022-07-13 14:23:42 +01:00
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";
};
2022-06-10 01:16:13 +01:00
}