summary refs log tree commit diff
path: root/pkgs/servers/monitoring/prometheus/node_exporter/default.nix
blob: 97169a0e298b13cc1b399790a944b0de876ab4ca (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{ stdenv, lib, goPackages, fetchFromGitHub }:

with goPackages;

buildGoPackage rec {
  name = "prometheus-node-exporter-0.8.0";
  goPackagePath = "github.com/prometheus/node_exporter";

  src = fetchFromGitHub {
    owner = "prometheus";
    repo = "node_exporter";
    rev = "aaf01e52e25883671fd67234b415df7abd0e4eac";
    sha256 = "0j1qvgsc2hcv50l9lyfivkzsyjkjp3w1yyqvd1gzfybk7hi59dya";
  };

  buildInputs = [
    glog
    go-runit
    ntp
    prometheus.client_golang
    prometheus.client_model
    protobuf
  ];

  meta = with lib; {
    description = "Prometheus exporter for machine metrics";
    homepage = https://github.com/prometheus/node_exporter;
    license = licenses.asl20;
    maintainers = with maintainers; [ benley ];
    platforms = platforms.unix;
  };
}