mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 00:12:56 +00:00
collectd: add dependencies for plugins notify_email, openldap, openipmi, xencpu
This commit is contained in:
parent
88226ea038
commit
b102c5f715
@ -6,6 +6,7 @@
|
|||||||
, jdk
|
, jdk
|
||||||
, libatasmart
|
, libatasmart
|
||||||
, libdbi
|
, libdbi
|
||||||
|
, libesmtp
|
||||||
, libgcrypt
|
, libgcrypt
|
||||||
, libmemcached, cyrus_sasl
|
, libmemcached, cyrus_sasl
|
||||||
, libmodbus
|
, libmodbus
|
||||||
@ -19,12 +20,14 @@
|
|||||||
, libvirt
|
, libvirt
|
||||||
, libxml2
|
, libxml2
|
||||||
, libapparmor, libcap_ng, numactl
|
, libapparmor, libcap_ng, numactl
|
||||||
, lvm2
|
|
||||||
, lua
|
, lua
|
||||||
|
, lvm2
|
||||||
, lm_sensors
|
, lm_sensors
|
||||||
, mongoc
|
, mongoc
|
||||||
, mosquitto
|
, mosquitto
|
||||||
, net-snmp
|
, net-snmp
|
||||||
|
, openldap
|
||||||
|
, openipmi
|
||||||
, perl
|
, perl
|
||||||
, postgresql
|
, postgresql
|
||||||
, protobufc
|
, protobufc
|
||||||
@ -35,6 +38,7 @@
|
|||||||
, rrdtool
|
, rrdtool
|
||||||
, udev
|
, udev
|
||||||
, varnish
|
, varnish
|
||||||
|
, xen
|
||||||
, yajl
|
, yajl
|
||||||
# Defaults to `null` for all supported plugins,
|
# Defaults to `null` for all supported plugins,
|
||||||
# list of plugin names for a custom build
|
# list of plugin names for a custom build
|
||||||
@ -122,7 +126,9 @@ let
|
|||||||
intel_rdt = {};
|
intel_rdt = {};
|
||||||
interface = {};
|
interface = {};
|
||||||
ipc = {};
|
ipc = {};
|
||||||
ipmi = {};
|
ipmi = {
|
||||||
|
buildInputs = [ openipmi ];
|
||||||
|
};
|
||||||
iptables = {
|
iptables = {
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
libpcap
|
libpcap
|
||||||
@ -200,6 +206,12 @@ let
|
|||||||
openldap = {};
|
openldap = {};
|
||||||
openvpn = {};
|
openvpn = {};
|
||||||
oracle = {};
|
oracle = {};
|
||||||
|
notify_email = {
|
||||||
|
buildInputs = [ libesmtp ];
|
||||||
|
};
|
||||||
|
openldap = {
|
||||||
|
buildInputs = [ openldap ];
|
||||||
|
};
|
||||||
ovs_events = {
|
ovs_events = {
|
||||||
buildInputs = [ yajl ];
|
buildInputs = [ yajl ];
|
||||||
};
|
};
|
||||||
@ -318,6 +330,9 @@ let
|
|||||||
zfs_arc = {};
|
zfs_arc = {};
|
||||||
zone = {};
|
zone = {};
|
||||||
zookeeper = {};
|
zookeeper = {};
|
||||||
|
xencpu = {
|
||||||
|
buildInputs = [ xen ];
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
configureFlags =
|
configureFlags =
|
||||||
|
Loading…
Reference in New Issue
Block a user