28 lines
722 B
Nix
28 lines
722 B
Nix
{ stdenv, buildGoPackage, fetchFromGitHub }:
|
|
|
|
buildGoPackage rec {
|
|
name = "node_exporter-${version}";
|
|
version = "0.17.0";
|
|
rev = "v${version}";
|
|
|
|
goPackagePath = "github.com/prometheus/node_exporter";
|
|
|
|
src = fetchFromGitHub {
|
|
inherit rev;
|
|
owner = "prometheus";
|
|
repo = "node_exporter";
|
|
sha256 = "08g4dg6zcr95j88apsxp828jfyx4vq271w1mgkf77c46c16d2nh0";
|
|
};
|
|
|
|
# FIXME: tests fail due to read-only nix store
|
|
doCheck = false;
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Prometheus exporter for machine metrics";
|
|
homepage = https://github.com/prometheus/node_exporter;
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ benley fpletz ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|