Merge pull request #75290 from marsam/update-awsweeper
awsweeper: init at 0.4.1
This commit is contained in:
commit
b6a61da54e
22
pkgs/tools/admin/awsweeper/default.nix
Normal file
22
pkgs/tools/admin/awsweeper/default.nix
Normal 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 ];
|
||||||
|
};
|
||||||
|
}
|
@ -1059,6 +1059,8 @@ in
|
|||||||
|
|
||||||
awstats = callPackage ../tools/system/awstats { };
|
awstats = callPackage ../tools/system/awstats { };
|
||||||
|
|
||||||
|
awsweeper = callPackage ../tools/admin/awsweeper { };
|
||||||
|
|
||||||
axel = callPackage ../tools/networking/axel {
|
axel = callPackage ../tools/networking/axel {
|
||||||
libssl = openssl;
|
libssl = openssl;
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user