Merge pull request #75290 from marsam/update-awsweeper

awsweeper: init at 0.4.1
This commit is contained in:
Sarah Brofeldt 2019-12-09 17:02:02 +01:00 committed by GitHub
commit b6a61da54e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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;
};