prometheus-mesos-exporter: extracted from goPackages

This commit is contained in:
Kamil Chmielewski
2016-06-09 11:22:02 +02:00
parent fdebbdb889
commit 485ad053e0
5 changed files with 54 additions and 28 deletions
@@ -0,0 +1,28 @@
# This file was generated by go2nix.
{ stdenv, lib, goPackages, fetchgit, fetchhg, fetchbzr, fetchsvn }:
with goPackages;
buildGoPackage rec {
name = "mesos_exporter-${version}";
version = "0.1.0";
rev = version;
goPackagePath = "github.com/prometheus/mesos_exporter";
src = fetchgit {
inherit rev;
url = "https://github.com/prometheus/mesos_exporter";
sha256 = "059az73j717gd960g4jigrxnvqrjh9jw1c324xpwaafa0bf10llm";
};
goDeps = ./mesos-exporter_deps.json;
meta = with stdenv.lib; {
description = "Export Mesos metrics to Prometheus";
homepage = https://github.com/prometheus/mesos_exporter;
license = licenses.asl20;
maintainers = with maintainers; [ benley ];
platforms = platforms.unix;
};
}
@@ -0,0 +1,16 @@
[
{
"include": "../../libs.json",
"packages": [
"github.com/golang/glog",
"github.com/prometheus/client_golang",
"github.com/prometheus/client_model",
"github.com/antonlindstrom/mesos_stats",
"github.com/beorn7/perks",
"github.com/golang/protobuf",
"github.com/matttproud/golang_protobuf_extensions",
"github.com/prometheus/procfs",
"bitbucket.org/ww/goautoneg"
]
}
]