mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-01 11:22:58 +00:00
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:
parent
9a1f63beac
commit
76fc1ae238
@ -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 ];
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user