awsweeper: init at 0.4.1

This commit is contained in:
Mario Rodas 2019-12-08 04:20:00 -05:00
parent 337cd5cc8a
commit cf79e2bdba
No known key found for this signature in database
GPG Key ID: 4C4BEFD7B18DC5E8
2 changed files with 24 additions and 0 deletions

View File

@ -0,0 +1,22 @@
{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "awsweeper";
version = "0.4.1";
src = fetchFromGitHub {
owner = "cloudetc";
repo = pname;
rev = "v${version}";
sha256 = "0if2sfxd28m832zyiy40grwa4may45zq20h35yxf8bq0wxvp0q3f";
};
modSha256 = "0nzc8ib2c3wlwk97qq45kgpnval69v8nbxhkfabcx0idipx3pbvk";
meta = with lib; {
description = "A tool to clean out your AWS account";
homepage = "https://github.com/cloudetc/awsweeper/";
license = licenses.mpl20;
maintainers = [ maintainers.marsam ];
};
}

View File

@ -1059,6 +1059,8 @@ in
awstats = callPackage ../tools/system/awstats { };
awsweeper = callPackage ../tools/admin/awsweeper { };
axel = callPackage ../tools/networking/axel {
libssl = openssl;
};