3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #63763 from thefloweringash/node-exporter-update

prometheus-node-exporter: 0.17.0 -> 0.18.1; set version information
This commit is contained in:
Robin Gloster 2019-08-23 15:57:59 +02:00 committed by GitHub
commit c6a082b8a7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2,7 +2,7 @@
buildGoPackage rec {
name = "node_exporter-${version}";
version = "0.17.0";
version = "0.18.1";
rev = "v${version}";
goPackagePath = "github.com/prometheus/node_exporter";
@ -11,12 +11,18 @@ buildGoPackage rec {
inherit rev;
owner = "prometheus";
repo = "node_exporter";
sha256 = "08g4dg6zcr95j88apsxp828jfyx4vq271w1mgkf77c46c16d2nh0";
sha256 = "0s3sp1gj86p7npxl38hkgs6ymd3wjjmc5hydyg1b5wh0x3yvpx07";
};
# FIXME: tests fail due to read-only nix store
doCheck = false;
buildFlagsArray = ''
-ldflags=
-X ${goPackagePath}/vendor/github.com/prometheus/common/version.Version=${version}
-X ${goPackagePath}/vendor/github.com/prometheus/common/version.Revision=${rev}
'';
meta = with stdenv.lib; {
description = "Prometheus exporter for machine metrics";
homepage = https://github.com/prometheus/node_exporter;