prometheus-collectd-exporter: extracted from goPackages

This commit is contained in:
Kamil Chmielewski
2016-06-09 11:22:02 +02:00
parent fc9bc9eba5
commit a3cf92fdba
5 changed files with 58 additions and 22 deletions
@@ -0,0 +1,28 @@
# This file was generated by go2nix.
{ stdenv, lib, goPackages, fetchgit, fetchhg, fetchbzr, fetchsvn }:
with goPackages;
buildGoPackage rec {
name = "collectd-exporter-${version}";
version = "0.1.0";
rev = version;
goPackagePath = "github.com/prometheus/collectd_exporter";
src= fetchgit {
inherit rev;
url = "https://github.com/prometheus/collectd_exporter";
sha256 = "165zsdn0lffb6fvxz75szmm152a6wmia5skb96k1mv59qbmn9fi1";
};
goDeps = ./collectd-exporter_deps.json;
meta = with stdenv.lib; {
description = "Relay server for exporting metrics from collectd to Prometheus";
homepage = https://github.com/prometheus/alertmanager;
license = licenses.asl20;
maintainers = with maintainers; [ benley ];
platforms = platforms.unix;
};
}
@@ -0,0 +1,14 @@
[
{
"include": "../../libs.json",
"packages": [
"github.com/prometheus/client_golang",
"github.com/prometheus/client_model",
"github.com/prometheus/procfs",
"bitbucket.org/ww/goautoneg",
"github.com/beorn7/perks",
"github.com/golang/protobuf",
"github.com/matttproud/golang_protobuf_extensions"
]
}
]