mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-25 03:17:13 +00:00
ed45fe1ccf
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.
30 lines
801 B
Nix
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 ];
|
|
};
|
|
}
|