2016-06-06 10:26:56 +00:00
|
|
|
{ stdenv, lib, buildGoPackage, fetchFromGitHub }:
|
2016-06-05 11:44:04 +00:00
|
|
|
|
|
|
|
buildGoPackage rec {
|
|
|
|
name = "prom2json-${version}";
|
|
|
|
version = "0.1.0";
|
|
|
|
rev = "${version}";
|
|
|
|
|
|
|
|
goPackagePath = "github.com/prometheus/prom2json";
|
|
|
|
|
2016-06-06 10:26:56 +00:00
|
|
|
src = fetchFromGitHub {
|
2016-06-05 11:44:04 +00:00
|
|
|
inherit rev;
|
2016-06-06 10:26:56 +00:00
|
|
|
owner = "prometheus";
|
|
|
|
repo = "prom2json";
|
2016-06-05 11:44:04 +00:00
|
|
|
sha256 = "0wwh3mz7z81fwh8n78sshvj46akcgjhxapjgfic5afc4nv926zdl";
|
|
|
|
};
|
|
|
|
|
2016-09-10 10:04:13 +00:00
|
|
|
goDeps = ./prom2json_deps.nix;
|
2016-06-05 11:44:04 +00:00
|
|
|
|
|
|
|
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;
|
|
|
|
};
|
|
|
|
}
|