highs: 1.8.0 -> 1.8.1 (#360451)
[NixPkgs.git] / pkgs / servers / monitoring / prometheus / prom2json.nix
blob63f1d7e7b89e0bf9b941ed37794a3d8c38d417ee
1 { lib, buildGoModule, fetchFromGitHub }:
3 buildGoModule rec {
4   pname = "prom2json";
5   version = "1.4.1";
7   src = fetchFromGitHub {
8     rev = "v${version}";
9     owner = "prometheus";
10     repo = "prom2json";
11     sha256 = "sha256-cKz+ZFQYjsL7dFfXXCrl4T8OuvQkdqVAotG9HRNtN7o=";
12   };
14   vendorHash = "sha256-pCy4oECZnvoODezUD1+lOT46yWUr78zvnHgEB2BJN3c=";
16   meta = with lib; {
17     description = "Tool to scrape a Prometheus client and dump the result as JSON";
18     mainProgram = "prom2json";
19     homepage = "https://github.com/prometheus/prom2json";
20     license = licenses.asl20;
21     maintainers = with maintainers; [ benley ];
22   };