3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/servers/monitoring/prometheus/statsd-bridge.nix
Svein Ove Aas 31a8eee841 prometheus: Bump all to newest
Disable tests for prometheus-node-exporter because one megacli test fails.

Closes #16575.
2016-07-18 20:27:53 +02:00

27 lines
706 B
Nix

{ stdenv, lib, buildGoPackage, fetchFromGitHub }:
buildGoPackage rec {
name = "statsd_bridge-${version}";
version = "0.3.0";
rev = version;
goPackagePath = "github.com/prometheus/statsd_bridge";
src = fetchFromGitHub {
inherit rev;
owner = "prometheus";
repo = "statsd_exporter";
sha256 = "1gg9v224n05khcwy27637w3rwh0cymm7hx6bginfxd7730rmpp2r";
};
goDeps = ./statsd-bridge_deps.json;
meta = with stdenv.lib; {
description = "Receives StatsD-style metrics and exports them to Prometheus";
homepage = https://github.com/prometheus/statsd_bridge;
license = licenses.asl20;
maintainers = with maintainers; [ benley ];
platforms = platforms.unix;
};
}