about summary refs log tree commit diff
path: root/pkgs/servers/monitoring/prometheus/prom2json.nix
blob: 5f45c63d96e63b768a59aecc38d2777baec98c73 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ stdenv, lib, buildGoPackage, fetchgit, fetchhg, fetchbzr, fetchsvn }:

buildGoPackage rec {
  name = "prom2json-${version}";
  version = "0.1.0";
  rev = "${version}";

  goPackagePath = "github.com/prometheus/prom2json";

  src = fetchgit {
    inherit rev;
    url = "https://github.com/prometheus/prom2json";
    sha256 = "0wwh3mz7z81fwh8n78sshvj46akcgjhxapjgfic5afc4nv926zdl";
  };

  goDeps = ./prom2json_deps.json;

  meta = with stdenv.lib; {
    description = "Tool to scrape a Prometheus client and dump the result as JSON";
    homepage = https://github.com/prometheus/prom2json;
    license = licenses.asl20;
    maintainers = with maintainers; [ benley ];
    platforms = platforms.unix;
  };
}