nixpkgs/pkgs/tools/security/saml2aws/default.nix
Martin Potier ed45fe1ccf saml2aws: 2.15.0 -> 2.19.0
Current version is broken, at least for use with Okta and AWS. New
version fixes this problem.

Packaging has changed a bit too, deps.nix was removed, and the top-level
`buildGoModule` is used insead, since the upstream project now exposes a
go.mod file.
2020-01-29 16:44:25 +01:00

30 lines
801 B
Nix

{ stdenv, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "saml2aws";
version = "2.19.0";
src = fetchFromGitHub {
owner = "Versent";
repo = "saml2aws";
rev = "v${version}";
sha256 = "1b34v52nvn5mgkxj90lmw0hhpqb35gi3dn47x3v7255890wkzryz";
};
modSha256 = "1ndr8npjjaxg97azshpca7mclxhbqm49wzswmv571y5x519bb7q8";
subPackages = [ "." "cmd/saml2aws" ];
buildFlagsArray = ''
-ldflags=-X main.Version=${version}
'';
meta = with stdenv.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;
platforms = stdenv.lib.platforms.unix;
maintainers = [ stdenv.lib.maintainers.pmyjavec ];
};
}