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