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