about summary refs log tree commit diff
path: root/pkgs/servers/monitoring/prometheus/cli.nix
blob: 20f6e7249abf2ac58203f0176092b28b1d1af97e (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 = "prometheus_cli-${version}";
  version = "0.3.0";
  rev = version;

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

  src = fetchgit {
    inherit rev;
    url = "https://github.com/prometheus/prometheus_cli";
    sha256 = "1qxqrcbd0d4mrjrgqz882jh7069nn5gz1b84rq7d7z1f1dqhczxn";
  };

  goDeps = ./cli_deps.json;

  meta = with stdenv.lib; {
    description = "Command line tool for querying the Prometheus HTTP API";
    homepage = https://github.com/prometheus/prometheus_cli;
    license = licenses.asl20;
    maintainers = with maintainers; [ benley ];
    platforms = platforms.unix;
  };
}