prometheus-haproxy-exporter: extracted from goPackages

This commit is contained in:
Kamil Chmielewski
2016-06-09 11:22:02 +02:00
parent a3cf92fdba
commit fdebbdb889
4 changed files with 43 additions and 16 deletions
@@ -0,0 +1,28 @@
# This file was generated by go2nix.
{ stdenv, lib, goPackages, fetchgit, fetchhg, fetchbzr, fetchsvn }:
with goPackages;
buildGoPackage rec {
name = "haproxy_exporter-${version}";
version = "0.4.0";
rev = version;
goPackagePath = "github.com/prometheus/haproxy_exporter";
src = fetchgit {
inherit rev;
url = "https://github.com/prometheus/haproxy_exporter";
sha256 = "0cwls1d4hmzjkwc50mjkxjb4sa4q6yq581wlc5sg9mdvl6g91zxr";
};
goDeps = ./haproxy-exporter_deps.json;
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 ];
platforms = platforms.unix;
};
}