2020-03-21 11:06:00 +00:00
|
|
|
{ stdenv, buildGoModule, fetchFromGitHub, libobjc, Foundation, IOKit }:
|
2018-06-26 07:29:49 +00:00
|
|
|
|
2019-12-19 08:19:17 +00:00
|
|
|
buildGoModule rec {
|
2019-07-09 07:40:22 +00:00
|
|
|
pname = "saml2aws";
|
2020-03-14 12:48:42 +00:00
|
|
|
version = "2.24.0";
|
2018-06-26 07:29:49 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "Versent";
|
|
|
|
repo = "saml2aws";
|
2019-12-19 08:19:17 +00:00
|
|
|
rev = "v${version}";
|
2020-03-14 12:48:42 +00:00
|
|
|
sha256 = "15zxi64s1hgpm3rxk0m7z5363jc7h80g91bfx8vg7nw680lday4w";
|
2018-06-26 07:29:49 +00:00
|
|
|
};
|
|
|
|
|
2020-03-14 12:48:42 +00:00
|
|
|
modSha256 = "0qxf2i06spjig3ynixh3xmbxpghh222jhfqcg71i4i79x4ycp5wx";
|
2019-12-19 08:19:17 +00:00
|
|
|
|
2020-03-21 11:06:00 +00:00
|
|
|
buildInputs = stdenv.lib.optionals stdenv.isDarwin [ libobjc Foundation IOKit ];
|
|
|
|
|
2019-12-19 08:19:17 +00:00
|
|
|
subPackages = [ "." "cmd/saml2aws" ];
|
|
|
|
|
|
|
|
buildFlagsArray = ''
|
|
|
|
-ldflags=-X main.Version=${version}
|
|
|
|
'';
|
|
|
|
|
2018-06-26 07:29:49 +00:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "CLI tool which enables you to login and retrieve AWS temporary credentials using a SAML IDP";
|
2019-12-19 08:19:17 +00:00
|
|
|
homepage = "https://github.com/Versent/saml2aws";
|
2018-06-26 07:29:49 +00:00
|
|
|
license = licenses.mit;
|
2019-02-17 13:00:33 +00:00
|
|
|
platforms = stdenv.lib.platforms.unix;
|
2018-06-26 07:29:49 +00:00
|
|
|
maintainers = [ stdenv.lib.maintainers.pmyjavec ];
|
|
|
|
};
|
|
|
|
}
|