nixpkgs/pkgs/servers/monitoring/prometheus/haproxy-exporter.nix
2016-06-09 11:22:02 +02:00

29 lines
781 B
Nix

# 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;
};
}