prometheus-json-exporter: 2016-09-13 -> 2017-10-06

This commit is contained in:
WilliButz 2018-08-21 01:41:15 +02:00 committed by Robin Gloster
parent 9d288e7da3
commit b712736283

View File

@ -3,23 +3,23 @@
buildGoPackage rec { buildGoPackage rec {
name = "prometheus-json-exporter-${version}"; name = "prometheus-json-exporter-${version}";
version = "unstable-2016-09-13"; version = "unstable-2017-10-06";
rev = "d45e5ebdb08cb734ad7a8683966032af1d91a76c";
goPackagePath = "github.com/kawamuray/prometheus-json-exporter"; goPackagePath = "github.com/kawamuray/prometheus-json-exporter";
src = fetchFromGitHub { src = fetchFromGitHub {
inherit rev;
owner = "kawamuray"; owner = "kawamuray";
repo = "prometheus-json-exporter"; repo = "prometheus-json-exporter";
sha256 = "0v3as7gakdqpsir97byknsrqxxxkq66hp23j4cscs45hsdb24pi9"; rev = "51e3dc02a30ab818bb73e5c98c3853231c2dbb5f";
sha256 = "1v1p4zcqnb3d3rm55r695ydn61h6gz95f55cpa22hzw18dasahdh";
}; };
goDeps = ./json-exporter_deps.nix; goDeps = ./json-exporter_deps.nix;
meta = { meta = with lib; {
description = "A prometheus exporter which scrapes remote JSON by JSONPath"; description = "A prometheus exporter which scrapes remote JSON by JSONPath";
homepage = https://github.com/kawamuray/prometheus-json-exporter; homepage = https://github.com/kawamuray/prometheus-json-exporter;
license = lib.licenses.asl20; license = licenses.asl20;
maintainers = with maintainers; [ willibutz ];
}; };
} }