nixpkgs/pkgs/tools/security/saml2aws/default.nix

35 lines
891 B
Nix
Raw Normal View History

{ lib, stdenv, buildGoModule, fetchFromGitHub, AppKit }:
buildGoModule rec {
2019-07-09 09:40:22 +02:00
pname = "saml2aws";
2021-07-05 23:32:42 +02:00
version = "2.31.0";
src = fetchFromGitHub {
owner = "Versent";
repo = "saml2aws";
rev = "v${version}";
2021-07-05 23:32:42 +02:00
sha256 = "sha256-Qe7+INWS9b6lw7QbaaQwIkRwvfx5dRKsZqun3z/U/QA=";
};
2020-06-04 04:57:19 +02:00
runVend = true;
2021-07-05 23:32:42 +02:00
vendorSha256 = "sha256-TieQVPSWtIteU0wTqX7si6GrPdYd4WD2eK4ZlLz0VJ8=";
buildInputs = lib.optionals stdenv.isDarwin [ AppKit ];
doCheck = false;
subPackages = [ "." "cmd/saml2aws" ];
buildFlagsArray = ''
-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;
2021-01-15 10:19:50 +01:00
platforms = lib.platforms.unix;
maintainers = [ lib.maintainers.pmyjavec ];
};
2020-06-04 04:57:19 +02:00
}