biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / servers / monitoring / prometheus / json-exporter.nix
blobad0e7a49aa3c6f76c17893869deff3eee2461ea2
1 { lib, buildGoModule, fetchFromGitHub, nixosTests }:
3 buildGoModule rec {
4   pname = "prometheus-json-exporter";
5   version = "0.6.0";
7   src = fetchFromGitHub {
8     owner = "prometheus-community";
9     repo = "json_exporter";
10     rev = "v${version}";
11     sha256 = "sha256-5tFhk62ewRE87lxgVM2bytV9GbXT5iAwbJqklohYDvM=";
12   };
14   vendorHash = "sha256-Hij3lh92OCH+sTrzNl/KkjLAhPGffzzmxhPDO2wG0gA=";
16   passthru.tests = { inherit (nixosTests.prometheus-exporters) json; };
18   meta = with lib; {
19     description = "A prometheus exporter which scrapes remote JSON by JSONPath";
20     homepage = "https://github.com/prometheus-community/json_exporter";
21     license = licenses.asl20;
22     maintainers = with maintainers; [ willibutz ];
23     mainProgram = "json_exporter";
24   };