about summary refs log tree commit diff
path: root/pkgs/tools/admin/aws-sso-creds
diff options
context:
space:
mode:
authorJoseph LaFreniere <joseph@lafreniere.xyz>2023-01-08 20:55:47 -0600
committerJoseph LaFreniere <joseph@lafreniere.xyz>2023-01-08 21:26:50 -0600
commit9574bb165aebfba3d660040161b57e9b31a7b1e9 (patch)
tree22bed5c0d9dc6d1cc002a9172dd07ccfa93df74d /pkgs/tools/admin/aws-sso-creds
parent7d3365445a0d53966dbd9be2229b7bc83653a2d0 (diff)
aws-sso-creds: init at 1.4.0
Diffstat (limited to 'pkgs/tools/admin/aws-sso-creds')
-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 0000000000000..ec91c33a0448e
--- /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";
+  };
+}