about summary refs log tree commit diff
path: root/pkgs/servers/monitoring
diff options
context:
space:
mode:
authorWilliButz <wbutz@cyberfnord.de>2018-08-21 01:41:15 +0200
committerRobin Gloster <mail@glob.in>2018-09-18 18:21:00 +0200
commitb712736283a465aec9420534727c71459d6d1839 (patch)
tree8823c344229abafd9452be017d039a5a94994ff0 /pkgs/servers/monitoring
parent9d288e7da346ddb3aee8d68fc9348ee868fd21c6 (diff)
downloadnixlib-b712736283a465aec9420534727c71459d6d1839.tar
nixlib-b712736283a465aec9420534727c71459d6d1839.tar.gz
nixlib-b712736283a465aec9420534727c71459d6d1839.tar.bz2
nixlib-b712736283a465aec9420534727c71459d6d1839.tar.lz
nixlib-b712736283a465aec9420534727c71459d6d1839.tar.xz
nixlib-b712736283a465aec9420534727c71459d6d1839.tar.zst
nixlib-b712736283a465aec9420534727c71459d6d1839.zip
prometheus-json-exporter: 2016-09-13 -> 2017-10-06
Diffstat (limited to 'pkgs/servers/monitoring')
-rw-r--r--pkgs/servers/monitoring/prometheus/json-exporter.nix12
1 files changed, 6 insertions, 6 deletions
diff --git a/pkgs/servers/monitoring/prometheus/json-exporter.nix b/pkgs/servers/monitoring/prometheus/json-exporter.nix
index ffba472bdc33..ef022fc308ce 100644
--- a/pkgs/servers/monitoring/prometheus/json-exporter.nix
+++ b/pkgs/servers/monitoring/prometheus/json-exporter.nix
@@ -3,23 +3,23 @@
 
 buildGoPackage rec {
   name = "prometheus-json-exporter-${version}";
-  version = "unstable-2016-09-13";
-  rev = "d45e5ebdb08cb734ad7a8683966032af1d91a76c";
+  version = "unstable-2017-10-06";
 
   goPackagePath = "github.com/kawamuray/prometheus-json-exporter";
 
   src = fetchFromGitHub {
-    inherit rev;
     owner = "kawamuray";
     repo = "prometheus-json-exporter";
-    sha256 = "0v3as7gakdqpsir97byknsrqxxxkq66hp23j4cscs45hsdb24pi9";
+    rev = "51e3dc02a30ab818bb73e5c98c3853231c2dbb5f";
+    sha256 = "1v1p4zcqnb3d3rm55r695ydn61h6gz95f55cpa22hzw18dasahdh";
   };
 
   goDeps = ./json-exporter_deps.nix;
 
-  meta = {
+  meta = with lib; {
     description = "A prometheus exporter which scrapes remote JSON by JSONPath";
     homepage = https://github.com/kawamuray/prometheus-json-exporter;
-    license = lib.licenses.asl20;
+    license = licenses.asl20;
+    maintainers = with maintainers; [ willibutz ];
   };
 }