9c6ee729d6
GitOrigin-RevId: 6cee3b5893090b0f5f0a06b4cf42ca4e60e5d222
30 lines
796 B
Nix
30 lines
796 B
Nix
{ lib, stdenv, buildGoModule, fetchFromGitHub, AppKit }:
|
|
|
|
buildGoModule rec {
|
|
pname = "saml2aws";
|
|
version = "2.36.9";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Versent";
|
|
repo = "saml2aws";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-eV922fUtNAHGFxuDwTKoakSzf1lMzVg+vOeaBbOP4V0=";
|
|
};
|
|
|
|
vendorHash = "sha256-20IggKOPS+Pu4tQIdYU5SXQhu2FrW0MdCdB9dvmqs7E=";
|
|
|
|
buildInputs = lib.optionals stdenv.isDarwin [ AppKit ];
|
|
|
|
subPackages = [ "." "cmd/saml2aws" ];
|
|
|
|
ldflags = [
|
|
"-X main.Version=${version}"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "CLI tool which enables you to login and retrieve AWS temporary credentials using a SAML IDP";
|
|
homepage = "https://github.com/Versent/saml2aws";
|
|
license = licenses.mit;
|
|
maintainers = [ lib.maintainers.pmyjavec ];
|
|
};
|
|
}
|