prom2json: extracted from goPackages

This commit is contained in:
Kamil Chmielewski
2016-06-09 11:22:02 +02:00
parent a95e0b9385
commit 4bf5a93f2d
5 changed files with 42 additions and 24 deletions
@@ -0,0 +1,28 @@
# This file was generated by go2nix.
{ stdenv, lib, goPackages, fetchgit, fetchhg, fetchbzr, fetchsvn }:
with goPackages;
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;
};
}
@@ -0,0 +1,11 @@
[
{
"include": "../../libs.json",
"packages": [
"github.com/golang/protobuf",
"github.com/matttproud/golang_protobuf_extensions",
"github.com/prometheus/client_golang",
"github.com/prometheus/client_model"
]
}
]