mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
65 lines
1.7 KiB
Nix
65 lines
1.7 KiB
Nix
{ stdenv, fetchurl
|
|
# optional:
|
|
, pkgconfig ? null # most of the extra deps need pkgconfig to be found
|
|
, curl ? null
|
|
, iptables ? null
|
|
, jdk ? null
|
|
, 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
|
|
, libtool ? null
|
|
, lm_sensors ? null
|
|
, lvm2 ? null
|
|
, libmysql ? null
|
|
, postgresql ? null
|
|
, protobufc ? null
|
|
, python ? null
|
|
, rabbitmq-c ? null
|
|
, riemann ? null
|
|
, rrdtool ? null
|
|
, udev ? null
|
|
, varnish ? null
|
|
, yajl ? null
|
|
, net_snmp ? null
|
|
}:
|
|
stdenv.mkDerivation rec {
|
|
version = "5.5.2";
|
|
name = "collectd-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "http://collectd.org/files/${name}.tar.bz2";
|
|
sha256 = "03w2pawbshl2wrl4cmyw8alsi0pvamb6ibxni96mjzhqc903lzq1";
|
|
};
|
|
|
|
buildInputs = [
|
|
pkgconfig curl iptables libatasmart libcredis libdbi libgcrypt libmemcached
|
|
cyrus_sasl libmodbus libnotify gdk_pixbuf liboping libpcap libsigrok libvirt
|
|
lm_sensors libxml2 lvm2 libmysql postgresql protobufc rabbitmq-c rrdtool
|
|
varnish yajl jdk libtool python udev net_snmp
|
|
];
|
|
|
|
# for some reason libsigrok isn't auto-detected
|
|
configureFlags =
|
|
stdenv.lib.optional (libsigrok != null) "--with-libsigrok" ++
|
|
stdenv.lib.optional (python != null) "--with-python=${python}/bin/python";
|
|
|
|
# Fix build on Glibc 2.24.
|
|
NIX_CFLAGS_COMPILE = "-Wno-error=cpp -Wno-error=deprecated-declarations";
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Daemon which collects system performance statistics periodically";
|
|
homepage = http://collectd.org;
|
|
license = licenses.gpl2;
|
|
platforms = platforms.linux;
|
|
maintainers = [ maintainers.bjornfor ];
|
|
};
|
|
}
|