2021-01-25 08:26:54 +00:00
|
|
|
{ lib, buildGoModule, fetchFromGitHub }:
|
2018-04-13 10:51:31 +00:00
|
|
|
|
2019-06-13 19:14:16 +00:00
|
|
|
buildGoModule rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "iamy";
|
2021-10-29 23:51:14 +00:00
|
|
|
version = "2.4.0";
|
2018-04-13 10:51:31 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "99designs";
|
|
|
|
repo = "iamy";
|
|
|
|
rev = "v${version}";
|
2021-10-29 23:51:14 +00:00
|
|
|
sha256 = "sha256-oH3ijZaWXI0TdVQN9gzp5ypWzY7OqSxDh7VBoZo42Cs=";
|
2018-04-13 10:51:31 +00:00
|
|
|
};
|
|
|
|
|
2021-10-29 23:51:14 +00:00
|
|
|
vendorSha256 = "sha256-/IUYM3pTvcHXw8t5MW6JUEWdxegFuQC8zkiySp8VEgE=";
|
2019-06-13 19:14:16 +00:00
|
|
|
|
2021-08-26 06:45:51 +00:00
|
|
|
ldflags = [
|
|
|
|
"-X main.Version=v${version}" "-s" "-w"
|
|
|
|
];
|
2019-06-13 19:14:16 +00:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2018-04-13 10:51:31 +00:00
|
|
|
description = "A cli tool for importing and exporting AWS IAM configuration to YAML files";
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://github.com/99designs/iamy";
|
2018-04-13 10:51:31 +00:00
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ suvash ];
|
|
|
|
};
|
2020-07-31 03:58:04 +00:00
|
|
|
}
|