monitoring-plugins: add ldap support

This commit is contained in:
Aaron Andersen 2019-03-19 21:00:23 -04:00
parent 7304454f86
commit 96003801d2

View File

@ -1,6 +1,6 @@
{ stdenv, fetchFromGitHub, fetchpatch, autoreconfHook
, coreutils, gnugrep, gnused, lm_sensors, net_snmp, openssh, openssl, perl
, mysql, zlib
, mysql, zlib, openldap
, runtimeShell }:
with stdenv.lib;
@ -48,7 +48,7 @@ in stdenv.mkDerivation rec {
'';
# !!! make openssh a runtime dependency only
buildInputs = [ mysql net_snmp openssh openssl perl zlib ];
buildInputs = [ mysql net_snmp openldap openssh openssl perl zlib ];
nativeBuildInputs = [ autoreconfHook ];