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

91 lines
2.4 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, darwin
# 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
, libcredis ? null
, libdbi ? null
, libgcrypt ? null
, libmemcached ? null, cyrus_sasl ? null
2017-01-22 01:38:50 +01:00
, libmicrohttpd ? 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
, lm_sensors ? null
, lvm2 ? null
, mysql ? null
, postgresql ? null
, protobufc ? null
2015-10-22 13:07:45 +02:00
, python ? null
, rabbitmq-c ? null
, riemann_c_client ? null
, rrdtool ? null
2015-10-30 08:26:35 +01:00
, udev ? null
, 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
, mosquitto ? null
, rdkafka ? null
, mongoc ? null
}:
2013-08-30 11:58:02 +02:00
stdenv.mkDerivation rec {
version = "5.8.0";
name = "collectd-${version}";
2013-08-30 11:58:02 +02:00
src = fetchurl {
url = "http://collectd.org/files/${name}.tar.bz2";
sha256 = "1j8mxgfq8039js2bscphd6cnriy35hk4jrxfjz5k6mghpdvg8vxh";
2013-08-30 11:58:02 +02: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
nativeBuildInputs = [ pkgconfig ];
buildInputs = [
curl libdbi libgcrypt libmemcached
cyrus_sasl libnotify gdk_pixbuf liboping libpcap libvirt
libxml2 postgresql protobufc rrdtool
varnish yajl jdk libtool python hiredis libmicrohttpd
riemann_c_client mosquitto rdkafka mongoc
] ++ stdenv.lib.optionals (mysql != null) [ mysql.connector-c
] ++ 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
];
configureFlags = [ "--localstatedir=/var" ];
# 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
'';
enableParallelBuilding = true;
meta = with stdenv.lib; {
description = "Daemon which collects system performance statistics periodically";
2017-06-20 01:56:37 +02:00
homepage = https://collectd.org;
license = licenses.gpl2;
platforms = platforms.unix;
2016-09-24 06:12:16 +02:00
maintainers = with maintainers; [ bjornfor fpletz ];
2013-08-30 11:58:02 +02:00
};
}