Merge pull request #72304 from WilliButz/update-postgres-exporter

prometheus-postgres-exporter: 0.5.1 -> 0.6.0
This commit is contained in:
Franz Pletz 2019-10-30 16:21:05 +00:00 committed by GitHub
commit db60b6501c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,10 +1,8 @@
{ stdenv, buildGoPackage, fetchFromGitHub }:
with stdenv.lib;
{ lib, buildGoPackage, fetchFromGitHub }:
buildGoPackage rec {
pname = "postgres_exporter";
version = "0.5.1";
version = "0.6.0";
goPackagePath = "github.com/wrouesnel/postgres_exporter";
@ -12,13 +10,13 @@ buildGoPackage rec {
owner = "wrouesnel";
repo = "postgres_exporter";
rev = "v${version}";
sha256 = "1awcqhiak56nrsaa49lkw6mcbrlm86ls14sp9v69h3a0brc1q7bn";
sha256 = "0a903mklp3aardlbz5fkslisav9khd1w3akcf9xkc5nfinr6xnqb";
};
meta = {
meta = with lib; {
inherit (src.meta) homepage;
description = "A Prometheus exporter for PostgreSQL";
license = licenses.asl20;
maintainers = with maintainers; [ fpletz globin ];
maintainers = with maintainers; [ fpletz globin willibutz ];
};
}