prometheus-haproxy-exporter: 0.7.0 -> 0.7.1

This commit is contained in:
Franz Pletz
2016-12-01 02:04:58 +01:00
parent b24b6bbfb0
commit 30d974e68b
2 changed files with 5 additions and 72 deletions
@@ -1,9 +1,9 @@
{ stdenv, lib, buildGoPackage, fetchFromGitHub }:
{ stdenv, buildGoPackage, fetchFromGitHub }:
buildGoPackage rec {
name = "haproxy_exporter-${version}";
version = "0.7.0";
rev = version;
version = "0.7.1";
rev = "v${version}";
goPackagePath = "github.com/prometheus/haproxy_exporter";
@@ -11,16 +11,14 @@ buildGoPackage rec {
inherit rev;
owner = "prometheus";
repo = "haproxy_exporter";
sha256 = "1jkijdawmnj5yps0yaj47nyfmcah0krwmqsjvicm3sl0dhwmac4w";
sha256 = "1svwa1cw4yc5k8acj2r2hkall9csxjw51hgmwkmx5dq55gr9lzai";
};
goDeps = ./haproxy-exporter_deps.nix;
meta = with stdenv.lib; {
description = "HAProxy Exporter for the Prometheus monitoring system";
homepage = https://github.com/prometheus/haproxy_exporter;
license = licenses.asl20;
maintainers = with maintainers; [ benley ];
maintainers = with maintainers; [ benley fpletz ];
platforms = platforms.unix;
};
}