prometheus-node-exporter: 0.12.0 -> 0.13.0

This commit is contained in:
Franz Pletz 2016-12-01 01:34:21 +01:00
parent 741bdeea38
commit 96137a6abd
No known key found for this signature in database
GPG key ID: 846FDED7792617B4

View file

@ -1,9 +1,9 @@
{ stdenv, lib, buildGoPackage, fetchFromGitHub }: { stdenv, buildGoPackage, fetchFromGitHub }:
buildGoPackage rec { buildGoPackage rec {
name = "node_exporter-${version}"; name = "node_exporter-${version}";
version = "0.12.0"; version = "0.13.0";
rev = version; rev = "v${version}";
goPackagePath = "github.com/prometheus/node_exporter"; goPackagePath = "github.com/prometheus/node_exporter";
@ -11,7 +11,7 @@ buildGoPackage rec {
inherit rev; inherit rev;
owner = "prometheus"; owner = "prometheus";
repo = "node_exporter"; repo = "node_exporter";
sha256 = "0ih8w9ji0fw1smsi45jgvrpqfzm3f5bvk9q3nwrl0my5xkksnr8g"; sha256 = "03xk8zns0dvzs13jgiwl2dxj9aq4bbfmwsg0wq5piravxpszs09q";
}; };
# FIXME: megacli test fails # FIXME: megacli test fails
@ -21,7 +21,7 @@ buildGoPackage rec {
description = "Prometheus exporter for machine metrics"; description = "Prometheus exporter for machine metrics";
homepage = https://github.com/prometheus/node_exporter; homepage = https://github.com/prometheus/node_exporter;
license = licenses.asl20; license = licenses.asl20;
maintainers = with maintainers; [ benley ]; maintainers = with maintainers; [ benley fpletz ];
platforms = platforms.unix; platforms = platforms.unix;
}; };
} }