summary refs log tree commit diff
path: root/pkgs/servers/monitoring
diff options
context:
space:
mode:
authorFranz Pletz <fpletz@fnordicwalking.de>2016-12-01 01:51:30 +0100
committerFranz Pletz <fpletz@fnordicwalking.de>2016-12-01 02:04:59 +0100
commit398bf54f639c1b028e77d118417e8010ff32ac7d (patch)
tree7817916b181c4d932147bbf82c1b39a77af439a1 /pkgs/servers/monitoring
parenta07912203eadc22fa88a9df9dc96a18270af144b (diff)
downloadnixlib-398bf54f639c1b028e77d118417e8010ff32ac7d.tar
nixlib-398bf54f639c1b028e77d118417e8010ff32ac7d.tar.gz
nixlib-398bf54f639c1b028e77d118417e8010ff32ac7d.tar.bz2
nixlib-398bf54f639c1b028e77d118417e8010ff32ac7d.tar.lz
nixlib-398bf54f639c1b028e77d118417e8010ff32ac7d.tar.xz
nixlib-398bf54f639c1b028e77d118417e8010ff32ac7d.tar.zst
nixlib-398bf54f639c1b028e77d118417e8010ff32ac7d.zip
prometheus-nginx-exporter: 20161104 -> 20161107
Diffstat (limited to 'pkgs/servers/monitoring')
-rw-r--r--pkgs/servers/monitoring/prometheus/nginx-exporter.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/servers/monitoring/prometheus/nginx-exporter.nix b/pkgs/servers/monitoring/prometheus/nginx-exporter.nix
index 4c369f406100..013f80411ad6 100644
--- a/pkgs/servers/monitoring/prometheus/nginx-exporter.nix
+++ b/pkgs/servers/monitoring/prometheus/nginx-exporter.nix
@@ -1,16 +1,16 @@
-{ stdenv, lib, buildGoPackage, fetchgit, fetchhg, fetchbzr, fetchsvn }:
+{ stdenv, buildGoPackage, fetchgit }:
 
 buildGoPackage rec {
   name = "nginx_exporter-${version}";
-  version = "20161104-${stdenv.lib.strings.substring 0 7 rev}";
-  rev = "1b2a3d124b6446a0159a68427b0dc3a8b9f32203";
+  version = "20161107-${stdenv.lib.strings.substring 0 7 rev}";
+  rev = "2d7dfd13458c0d82671c03dc54f3aa0110a49a05";
 
   goPackagePath = "github.com/discordianfish/nginx_exporter";
 
   src = fetchgit {
     inherit rev;
     url = "https://github.com/discordianfish/nginx_exporter";
-    sha256 = "19nmkn81m0nyq022bnmjr93wifig4mjcgvns7cbn31i197cydw28";
+    sha256 = "17mjbf8v4h7ja87y02ggmyzl3g8ms8s37mcpcq1niijgli37h75d";
   };
 
   goDeps = ./nginx-exporter_deps.nix;
@@ -19,7 +19,7 @@ buildGoPackage rec {
     description = "Metrics relay from nginx stats to Prometheus";
     homepage = https://github.com/discordianfish/nginx_exporter;
     license = licenses.asl20;
-    maintainers = with maintainers; [ benley ];
+    maintainers = with maintainers; [ benley fpletz ];
     platforms = platforms.unix;
   };
 }