2019-01-11 03:11:31 +00:00
|
|
|
{ stdenv, buildGoPackage, fetchFromGitHub }:
|
2016-06-05 14:52:16 +01:00
|
|
|
|
2019-01-11 03:11:31 +00:00
|
|
|
buildGoPackage rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "node_exporter";
|
2019-06-25 08:17:51 +01:00
|
|
|
version = "0.18.1";
|
2016-12-01 00:34:21 +00:00
|
|
|
rev = "v${version}";
|
2016-06-28 14:32:22 +01:00
|
|
|
|
2016-06-05 14:52:16 +01:00
|
|
|
goPackagePath = "github.com/prometheus/node_exporter";
|
|
|
|
|
2016-06-06 11:26:56 +01:00
|
|
|
src = fetchFromGitHub {
|
2016-06-05 14:52:16 +01:00
|
|
|
inherit rev;
|
2016-06-06 11:26:56 +01:00
|
|
|
owner = "prometheus";
|
|
|
|
repo = "node_exporter";
|
2019-06-25 08:17:51 +01:00
|
|
|
sha256 = "0s3sp1gj86p7npxl38hkgs6ymd3wjjmc5hydyg1b5wh0x3yvpx07";
|
2016-06-05 14:52:16 +01:00
|
|
|
};
|
|
|
|
|
2018-06-18 18:21:20 +01:00
|
|
|
# FIXME: tests fail due to read-only nix store
|
2016-06-28 14:32:22 +01:00
|
|
|
doCheck = false;
|
2016-06-05 14:52:16 +01:00
|
|
|
|
2019-06-25 08:17:46 +01:00
|
|
|
buildFlagsArray = ''
|
|
|
|
-ldflags=
|
|
|
|
-X ${goPackagePath}/vendor/github.com/prometheus/common/version.Version=${version}
|
|
|
|
-X ${goPackagePath}/vendor/github.com/prometheus/common/version.Revision=${rev}
|
|
|
|
'';
|
|
|
|
|
2016-06-05 14:52:16 +01:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Prometheus exporter for machine metrics";
|
|
|
|
homepage = https://github.com/prometheus/node_exporter;
|
|
|
|
license = licenses.asl20;
|
2019-08-20 18:36:05 +01:00
|
|
|
maintainers = with maintainers; [ benley fpletz globin ];
|
2016-06-05 14:52:16 +01:00
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|