summaryrefslogtreecommitdiffstats
path: root/pkgs/tools/admin/aws-sso-creds/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/tools/admin/aws-sso-creds/default.nix')
-rw-r--r--pkgs/tools/admin/aws-sso-creds/default.nix33
1 files changed, 33 insertions, 0 deletions
diff --git a/pkgs/tools/admin/aws-sso-creds/default.nix b/pkgs/tools/admin/aws-sso-creds/default.nix
new file mode 100644
index 000000000000..ec91c33a0448
--- /dev/null
+++ b/pkgs/tools/admin/aws-sso-creds/default.nix
@@ -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";
+ };
+}