lol
1# This file was generated by go2nix.
2{ stdenv, buildGoPackage, fetchFromGitHub, lib }:
3
4buildGoPackage rec {
5 name = "prometheus-json-exporter-${version}";
6 version = "unstable-2016-09-13";
7 rev = "d45e5ebdb08cb734ad7a8683966032af1d91a76c";
8
9 goPackagePath = "github.com/kawamuray/prometheus-json-exporter";
10
11 src = fetchFromGitHub {
12 inherit rev;
13 owner = "kawamuray";
14 repo = "prometheus-json-exporter";
15 sha256 = "0v3as7gakdqpsir97byknsrqxxxkq66hp23j4cscs45hsdb24pi9";
16 };
17
18 goDeps = ./json-exporter_deps.nix;
19
20 meta = {
21 description = "A prometheus exporter which scrapes remote JSON by JSONPath";
22 homepage = https://github.com/kawamuray/prometheus-json-exporter;
23 license = lib.licenses.asl20;
24 };
25}