mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
27 lines
715 B
Nix
27 lines
715 B
Nix
{ stdenv, lib, buildGoPackage, fetchFromGitHub }:
|
|
|
|
buildGoPackage rec {
|
|
name = "statsd_exporter-${version}";
|
|
version = "0.4.0";
|
|
rev = version;
|
|
|
|
goPackagePath = "github.com/prometheus/statsd_bridge";
|
|
|
|
src = fetchFromGitHub {
|
|
rev = "v${version}";
|
|
owner = "prometheus";
|
|
repo = "statsd_exporter";
|
|
sha256 = "1w11n7g663g7d7mbf6jfzcqmcm9rhaxy52bg0rqnad9v0rs5qxr6";
|
|
};
|
|
|
|
goDeps = ./statsd-bridge_deps.nix;
|
|
|
|
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;
|
|
};
|
|
}
|