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

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

34 lines
813 B
Nix
Raw Normal View History

2023-01-09 02:55:47 +00:00
{ buildGoModule
, fetchFromGitHub
, lib
, makeWrapper
, xdg-utils
}:
buildGoModule rec {
pname = "aws-sso-creds";
2023-02-26 01:51:18 +00:00
version = "1.4.1";
2023-01-09 02:55:47 +00:00
src = fetchFromGitHub {
owner = "jaxxstorm";
repo = pname;
rev = "v${version}";
2023-02-26 01:51:18 +00:00
sha256 = "sha256-V50t1L4+LZnMaET3LTp1nt7frNpu95KjgbQ5Onqt5sI=";
2023-01-09 02:55:47 +00:00
};
2023-02-26 01:51:18 +00:00
vendorHash = "sha256-0jXZpdiSHMn94MT3mPNtbfV7owluWhy1iAvQIBdebdE=";
2023-01-09 02:55:47 +00:00
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";
};
}