nixpkgs-suyu/pkgs/tools/admin/awsweeper/default.nix

29 lines
838 B
Nix
Raw Normal View History

{ lib, buildGoModule, fetchurl, fetchFromGitHub }:
2019-12-08 10:20:00 +01:00
buildGoModule rec {
pname = "awsweeper";
2020-04-25 11:20:00 +02:00
version = "0.7.0";
2019-12-08 10:20:00 +01:00
# Requires go generate to be run with mockgen, but doesn't check in the results.
patches = fetchurl {
url = "https://raw.githubusercontent.com/c00w/patches/master/awskeeper.patch";
sha256 = "0dz553ffxc37m2iwygrbhxf7pm91hxdriic8a1gjf8q3nyn13npl";
};
2019-12-08 10:20:00 +01:00
src = fetchFromGitHub {
owner = "cloudetc";
repo = pname;
rev = "v${version}";
2020-04-25 11:20:00 +02:00
sha256 = "1ybrrpnp6rh7rcwihww43cvhfhzzyy51rdk1hwy9ljpkg37k4y28";
2019-12-08 10:20:00 +01:00
};
vendorSha256 = "0hnpb1xp135z2qpn1b6xad59739hffhs8dfpr3n5drmrvajpn4xp";
2019-12-08 10:20:00 +01:00
meta = with lib; {
2019-12-08 10:20:00 +01:00
description = "A tool to clean out your AWS account";
homepage = "https://github.com/cloudetc/awsweeper/";
license = licenses.mpl20;
maintainers = [ maintainers.marsam ];
};
}