nixpkgs/pkgs/tools/system/collectd/default.nix

65 lines
1.7 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl
# optional:
, pkgconfig ? null # most of the extra deps need pkgconfig to be found
, curl ? null
, iptables ? null
2015-10-22 11:07:45 +00:00
, jdk ? null
2015-10-30 07:26:35 +00:00
, libatasmart ? null
, 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 11:07:45 +00:00
, libtool ? null
, lm_sensors ? null
, lvm2 ? null
2016-02-26 02:44:41 +00:00
, libmysql ? null
, postgresql ? null
, protobufc ? null
2015-10-22 11:07:45 +00:00
, python ? null
, rabbitmq-c ? null
2015-10-22 11:07:45 +00:00
, riemann ? null
, rrdtool ? null
2015-10-30 07:26:35 +00:00
, udev ? null
, varnish ? null
, yajl ? null
2016-06-23 14:18:16 +00:00
, net_snmp ? null
2016-09-24 04:12:16 +00:00
, hiredis ? null
, libmnl ? null
}:
2013-08-30 09:58:02 +00:00
stdenv.mkDerivation rec {
2016-09-24 04:12:16 +00:00
version = "5.6.0";
name = "collectd-${version}";
2013-08-30 09:58:02 +00:00
src = fetchurl {
url = "http://collectd.org/files/${name}.tar.bz2";
2016-09-24 04:12:16 +00:00
sha256 = "08w6fjzczi2psk7va0xkjh9pigpar6sbjx2a6ayq4dmc3zcvpzzh";
2013-08-30 09:58:02 +00: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
2016-09-24 04:12:16 +00:00
varnish yajl jdk libtool python udev net_snmp hiredis libmnl
];
# for some reason libsigrok isn't auto-detected
2015-10-22 11:07:45 +00:00
configureFlags =
stdenv.lib.optional (libsigrok != null) "--with-libsigrok" ++
stdenv.lib.optional (python != null) "--with-python=${python}/bin/python";
meta = with stdenv.lib; {
description = "Daemon which collects system performance statistics periodically";
2013-08-30 09:58:02 +00:00
homepage = http://collectd.org;
license = licenses.gpl2;
platforms = platforms.linux;
2016-09-24 04:12:16 +00:00
maintainers = with maintainers; [ bjornfor fpletz ];
2013-08-30 09:58:02 +00:00
};
}