about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMaximilian Bosch <maximilian@mbosch.me>2019-08-11 16:59:00 +0200
committerGitHub <noreply@github.com>2019-08-11 16:59:00 +0200
commit5002c9aedb4f80dba175690d5149f997ebd0a4a2 (patch)
treebef236d590b318551faf53e1d74cebeaaab2214e
parent18fa1c335e9e643a1fad753a04a849415588ec2b (diff)
parentd373b3fbb3736c331d91d7653174ef47a885d444 (diff)
downloadnixlib-5002c9aedb4f80dba175690d5149f997ebd0a4a2.tar
nixlib-5002c9aedb4f80dba175690d5149f997ebd0a4a2.tar.gz
nixlib-5002c9aedb4f80dba175690d5149f997ebd0a4a2.tar.bz2
nixlib-5002c9aedb4f80dba175690d5149f997ebd0a4a2.tar.lz
nixlib-5002c9aedb4f80dba175690d5149f997ebd0a4a2.tar.xz
nixlib-5002c9aedb4f80dba175690d5149f997ebd0a4a2.tar.zst
nixlib-5002c9aedb4f80dba175690d5149f997ebd0a4a2.zip
Merge pull request #66473 from WilliButz/update-nginx-exporter
prometheus-nginx-exporter: 0.4.1 -> 0.4.2, run tests
-rw-r--r--pkgs/servers/monitoring/prometheus/nginx-exporter.nix6
1 files changed, 4 insertions, 2 deletions
diff --git a/pkgs/servers/monitoring/prometheus/nginx-exporter.nix b/pkgs/servers/monitoring/prometheus/nginx-exporter.nix
index 94cb2f74cb08..963315f00c12 100644
--- a/pkgs/servers/monitoring/prometheus/nginx-exporter.nix
+++ b/pkgs/servers/monitoring/prometheus/nginx-exporter.nix
@@ -2,7 +2,7 @@
 
 buildGoPackage rec {
   name = "nginx_exporter-${version}";
-  version = "0.4.1";
+  version = "0.4.2";
 
   goPackagePath = "github.com/nginxinc/nginx-prometheus-exporter";
 
@@ -14,9 +14,11 @@ buildGoPackage rec {
     rev = "v${version}";
     owner = "nginxinc";
     repo = "nginx-prometheus-exporter";
-    sha256 = "0c5bxl9xrd4gh2w5wyrzghmbcy9k1khydzml5cm0rsyqhwsvs8m5";
+    sha256 = "023nl83w0fic7sj0yxxgj7jchyafqnmv6dq35amzz37ikx92mdcj";
   };
 
+  doCheck = true;
+
   meta = with stdenv.lib; {
     description = "NGINX Prometheus Exporter for NGINX and NGINX Plus";
     homepage = "https://github.com/nginxinc/nginx-prometheus-exporter";