Skip to content

Commit

Permalink
Merge pull request #171334 from aaronjheng/prometheus-aws-s3-exporter
Browse files Browse the repository at this point in the history
prometheus-aws-s3-exporter: 0.4.1 -> 0.5.0
  • Loading branch information
marsam committed May 4, 2022
2 parents 90feacf + 5aec68a commit 9344233
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions pkgs/servers/monitoring/prometheus/aws-s3-exporter.nix
@@ -1,19 +1,19 @@
{ lib, buildGoPackage, fetchFromGitHub }:
{ lib, buildGoModule, fetchFromGitHub }:

buildGoPackage rec {
buildGoModule rec {
pname = "aws-s3-exporter";
version = "0.4.1";

goPackagePath = "github.com/ribbybibby/s3_exporter";
version = "0.5.0";

src = fetchFromGitHub {
owner = "ribbybibby";
repo = "s3_exporter";
rev = "v${version}";
sha256 = "01g4k5wrbc2ggxkn4yqd2v0amw8yl5dbcfwi4jm3kqkihrf0rbiq";
sha256 = "sha256-dYkMCCAIlFDFOFUNJd4NvtAeJDTsHeJoH90b5pSGlQE=";
};

doCheck = true;
vendorSha256 = null;

ldflags = [ "-s" "-w" ];

meta = with lib; {
description = "Exports Prometheus metrics about S3 buckets and objects";
Expand Down

0 comments on commit 9344233

Please sign in to comment.