Merge pull request #330634 from r-ryantm/auto-update/circumflex
[NixPkgs.git] / pkgs / servers / monitoring / prometheus / aws-s3-exporter.nix
blobb3855f532e9a6111fa44d395386fc233ca30da5e
1 { lib, buildGoModule, fetchFromGitHub }:
3 buildGoModule rec {
4   pname = "aws-s3-exporter";
5   version = "0.5.0";
7   src = fetchFromGitHub {
8     owner = "ribbybibby";
9     repo = "s3_exporter";
10     rev = "v${version}";
11     sha256 = "sha256-dYkMCCAIlFDFOFUNJd4NvtAeJDTsHeJoH90b5pSGlQE=";
12   };
14   vendorHash = null;
16   ldflags = [ "-s" "-w" ];
18   meta = with lib; {
19     description = "Exports Prometheus metrics about S3 buckets and objects";
20     mainProgram = "s3_exporter";
21     homepage = "https://github.com/ribbybibby/s3_exporter";
22     license = licenses.asl20;
23     maintainers = [ maintainers.mmahut ];
24   };