2020-06-18 12:48:40 +02:00
|
|
|
{ lib, buildGoPackage, fetchFromGitHub, nixosTests }:
|
2019-08-01 23:10:08 +02:00
|
|
|
|
|
|
|
buildGoPackage rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "postgres_exporter";
|
2019-11-25 21:59:42 +01:00
|
|
|
version = "0.8.0";
|
2019-08-01 23:10:08 +02:00
|
|
|
|
|
|
|
goPackagePath = "github.com/wrouesnel/postgres_exporter";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "wrouesnel";
|
|
|
|
repo = "postgres_exporter";
|
|
|
|
rev = "v${version}";
|
2019-11-25 21:59:42 +01:00
|
|
|
sha256 = "0mid2kvskab3a32jscygg5jh0741nr7dvxzj4v029yiiqcx55nrc";
|
2019-08-01 23:10:08 +02:00
|
|
|
};
|
|
|
|
|
2019-10-31 23:49:15 +01:00
|
|
|
doCheck = true;
|
|
|
|
|
2020-06-18 12:48:40 +02:00
|
|
|
passthru.tests = { inherit (nixosTests.prometheus-exporters) postgres; };
|
|
|
|
|
2019-10-30 16:12:11 +01:00
|
|
|
meta = with lib; {
|
2019-08-01 23:10:08 +02:00
|
|
|
inherit (src.meta) homepage;
|
|
|
|
description = "A Prometheus exporter for PostgreSQL";
|
|
|
|
license = licenses.asl20;
|
2019-10-30 16:12:11 +01:00
|
|
|
maintainers = with maintainers; [ fpletz globin willibutz ];
|
2019-08-01 23:10:08 +02:00
|
|
|
};
|
|
|
|
}
|