prometheus-postgres-exporter: 0.8.0 -> 0.9.0

ChangeLog: https://github.com/prometheus-community/postgres_exporter/blob/v0.9.0/CHANGELOG.md
This commit is contained in:
Maximilian Bosch 2021-03-31 20:29:42 +02:00
parent 9a1f63beac
commit 76fc1ae238
No known key found for this signature in database
GPG Key ID: 091DBF4D1FC46B8E

View File

@ -1,18 +1,18 @@
{ lib, buildGoPackage, fetchFromGitHub, nixosTests }:
{ lib, buildGoModule, fetchFromGitHub, nixosTests }:
buildGoPackage rec {
buildGoModule rec {
pname = "postgres_exporter";
version = "0.8.0";
goPackagePath = "github.com/wrouesnel/postgres_exporter";
version = "0.9.0";
src = fetchFromGitHub {
owner = "wrouesnel";
repo = "postgres_exporter";
rev = "v${version}";
sha256 = "0mid2kvskab3a32jscygg5jh0741nr7dvxzj4v029yiiqcx55nrc";
sha256 = "sha256-Kv+sjqhlmH36L4YvDuGYODR/eTHA2TKQ6IUCXAiItyo=";
};
vendorSha256 = "sha256-yMcoUl9NsiiZQyEHlLu79DzIyl6BbhLZ/xNFavaGrEs=";
doCheck = true;
passthru.tests = { inherit (nixosTests.prometheus-exporters) postgres; };
@ -21,6 +21,6 @@ buildGoPackage rec {
inherit (src.meta) homepage;
description = "A Prometheus exporter for PostgreSQL";
license = licenses.asl20;
maintainers = with maintainers; [ fpletz globin willibutz ];
maintainers = with maintainers; [ fpletz globin willibutz ma27 ];
};
}