2017-09-28 22:05:07 +02:00
|
|
|
{ stdenv, fetchurl, darwin
|
2014-06-15 10:51:43 +02:00
|
|
|
# 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
|
2017-01-22 01:38:50 +01:00
|
|
|
, libmicrohttpd ? null
|
2014-06-15 10:51:43 +02:00
|
|
|
, 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
|
2017-12-27 16:15:33 +01:00
|
|
|
, mysql ? 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
|
2017-12-20 23:37:37 +01:00
|
|
|
, riemann_c_client ? 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
|
2016-09-24 06:12:16 +02:00
|
|
|
, hiredis ? null
|
|
|
|
, libmnl ? null
|
2017-12-20 23:37:37 +01:00
|
|
|
, mosquitto ? null
|
|
|
|
, rdkafka ? null
|
|
|
|
, mongoc ? null
|
2014-06-15 10:51:43 +02:00
|
|
|
}:
|
2013-08-30 11:58:02 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2017-12-20 23:37:37 +01:00
|
|
|
version = "5.8.0";
|
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";
|
2017-12-20 23:37:37 +01:00
|
|
|
sha256 = "1j8mxgfq8039js2bscphd6cnriy35hk4jrxfjz5k6mghpdvg8vxh";
|
2013-08-30 11:58:02 +02:00
|
|
|
};
|
|
|
|
|
2017-12-20 23:37:37 +01:00
|
|
|
# on 5.8.0: lvm2app.h:21:2: error: #warning "liblvm2app is deprecated, use D-Bus API instead." [-Werror=cpp]
|
|
|
|
NIX_CFLAGS_COMPILE = [ "-Wno-error=cpp" ];
|
2017-10-22 17:23:32 +02:00
|
|
|
|
2017-09-14 21:24:37 +02:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2014-06-15 10:51:43 +02:00
|
|
|
buildInputs = [
|
2017-10-02 02:22:12 +02:00
|
|
|
curl libdbi libgcrypt libmemcached
|
2017-09-28 22:05:07 +02:00
|
|
|
cyrus_sasl libnotify gdk_pixbuf liboping libpcap libvirt
|
2017-12-27 16:15:33 +01:00
|
|
|
libxml2 postgresql protobufc rrdtool
|
2017-09-28 22:05:07 +02:00
|
|
|
varnish yajl jdk libtool python hiredis libmicrohttpd
|
2017-12-20 23:37:37 +01:00
|
|
|
riemann_c_client mosquitto rdkafka mongoc
|
2017-12-30 17:04:54 +01:00
|
|
|
] ++ stdenv.lib.optionals (mysql != null) [ mysql.connector-c
|
2017-09-28 22:05:07 +02:00
|
|
|
] ++ stdenv.lib.optionals stdenv.isLinux [
|
|
|
|
iptables libatasmart libcredis libmodbus libsigrok
|
|
|
|
lm_sensors lvm2 rabbitmq-c udev net_snmp libmnl
|
|
|
|
] ++ stdenv.lib.optionals stdenv.isDarwin [
|
|
|
|
darwin.apple_sdk.frameworks.IOKit
|
|
|
|
darwin.apple_sdk.frameworks.ApplicationServices
|
2016-09-25 19:52:55 +02:00
|
|
|
];
|
|
|
|
|
2017-12-20 23:37:37 +01:00
|
|
|
configureFlags = [ "--localstatedir=/var" ];
|
2014-06-15 10:51:43 +02:00
|
|
|
|
2017-06-30 22:10:08 +02:00
|
|
|
# do not create directories in /var during installPhase
|
|
|
|
postConfigure = ''
|
|
|
|
substituteInPlace Makefile --replace '$(mkinstalldirs) $(DESTDIR)$(localstatedir)/' '#'
|
|
|
|
'';
|
|
|
|
|
|
|
|
postInstall = ''
|
|
|
|
if [ -d $out/share/collectd/java ]; then
|
|
|
|
mv $out/share/collectd/java $out/share/
|
|
|
|
fi
|
|
|
|
'';
|
|
|
|
|
2017-12-20 23:37:37 +01:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2014-07-14 20:16:21 +02:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Daemon which collects system performance statistics periodically";
|
2017-06-20 01:56:37 +02:00
|
|
|
homepage = https://collectd.org;
|
2014-07-14 20:16:21 +02:00
|
|
|
license = licenses.gpl2;
|
2017-09-28 22:05:07 +02:00
|
|
|
platforms = platforms.unix;
|
2016-09-24 06:12:16 +02:00
|
|
|
maintainers = with maintainers; [ bjornfor fpletz ];
|
2013-08-30 11:58:02 +02:00
|
|
|
};
|
|
|
|
}
|