2014-06-15 01:51:43 -07:00
|
|
|
{ stdenv, fetchurl
|
|
|
|
# optional:
|
|
|
|
, pkgconfig ? null # most of the extra deps need pkgconfig to be found
|
|
|
|
, curl ? null
|
|
|
|
, iptables ? null
|
2015-10-22 04:07:45 -07:00
|
|
|
, jdk ? null
|
2015-10-30 00:26:35 -07:00
|
|
|
, libatasmart ? null
|
2014-06-15 01:51:43 -07:00
|
|
|
, libcredis ? null
|
|
|
|
, libdbi ? null
|
|
|
|
, libgcrypt ? null
|
|
|
|
, libmemcached ? null, cyrus_sasl ? null
|
|
|
|
, libmodbus ? null
|
|
|
|
, libnotify ? null, gdk_pixbuf ? null
|
|
|
|
, liboping ? null
|
|
|
|
, libpcap ? null
|
|
|
|
, libsigrok ? null
|
|
|
|
, libvirt ? null
|
|
|
|
, libxml2 ? null
|
2015-10-22 04:07:45 -07:00
|
|
|
, libtool ? null
|
2014-06-15 01:51:43 -07:00
|
|
|
, lm_sensors ? null
|
|
|
|
, lvm2 ? null
|
2016-02-25 18:44:41 -08:00
|
|
|
, libmysql ? null
|
2014-06-15 01:51:43 -07:00
|
|
|
, postgresql ? null
|
|
|
|
, protobufc ? null
|
2015-10-22 04:07:45 -07:00
|
|
|
, python ? null
|
2014-06-15 01:51:43 -07:00
|
|
|
, rabbitmq-c ? null
|
2015-10-22 04:07:45 -07:00
|
|
|
, riemann ? null
|
2014-06-15 01:51:43 -07:00
|
|
|
, rrdtool ? null
|
2015-10-30 00:26:35 -07:00
|
|
|
, udev ? null
|
2014-06-15 01:51:43 -07:00
|
|
|
, varnish ? null
|
|
|
|
, yajl ? null
|
|
|
|
}:
|
2013-08-30 02:58:02 -07:00
|
|
|
stdenv.mkDerivation rec {
|
2016-04-12 18:06:10 -07:00
|
|
|
version = "5.5.1";
|
2016-03-17 20:25:27 -07:00
|
|
|
name = "collectd-${version}";
|
2014-06-18 21:19:00 -07:00
|
|
|
|
2013-08-30 02:58:02 -07:00
|
|
|
src = fetchurl {
|
|
|
|
url = "http://collectd.org/files/${name}.tar.bz2";
|
2016-04-12 18:06:10 -07:00
|
|
|
sha256 = "0gxwq3jl20wgvb7qawivshpkm4i3kvghpnfcn5yrlhphw4kdbigr";
|
2013-08-30 02:58:02 -07:00
|
|
|
};
|
|
|
|
|
2014-06-15 01:51:43 -07:00
|
|
|
buildInputs = [
|
2015-10-30 00:26:35 -07:00
|
|
|
pkgconfig curl iptables libatasmart libcredis libdbi libgcrypt libmemcached
|
|
|
|
cyrus_sasl libmodbus libnotify gdk_pixbuf liboping libpcap libsigrok libvirt
|
2016-02-25 18:44:41 -08:00
|
|
|
lm_sensors libxml2 lvm2 libmysql postgresql protobufc rabbitmq-c rrdtool
|
2015-10-30 00:26:35 -07:00
|
|
|
varnish yajl jdk libtool python udev
|
2014-06-15 01:51:43 -07:00
|
|
|
];
|
|
|
|
|
|
|
|
# for some reason libsigrok isn't auto-detected
|
2015-10-22 04:07:45 -07:00
|
|
|
configureFlags =
|
|
|
|
stdenv.lib.optional (libsigrok != null) "--with-libsigrok" ++
|
|
|
|
stdenv.lib.optional (python != null) "--with-python=${python}/bin/python";
|
2014-06-15 01:51:43 -07:00
|
|
|
|
2014-11-28 09:40:19 -08:00
|
|
|
NIX_CFLAGS_COMPILE = "-Wno-error=cpp";
|
|
|
|
|
2014-07-14 11:16:21 -07:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Daemon which collects system performance statistics periodically";
|
2013-08-30 02:58:02 -07:00
|
|
|
homepage = http://collectd.org;
|
2014-07-14 11:16:21 -07:00
|
|
|
license = licenses.gpl2;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = [ maintainers.bjornfor ];
|
2013-08-30 02:58:02 -07:00
|
|
|
};
|
|
|
|
}
|