about summary refs log tree commit diff
path: root/pkgs/servers/monitoring/plugins/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/servers/monitoring/plugins/default.nix')
-rw-r--r--pkgs/servers/monitoring/plugins/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/servers/monitoring/plugins/default.nix b/pkgs/servers/monitoring/plugins/default.nix
index f3796eaf134a..d0ab2b823113 100644
--- a/pkgs/servers/monitoring/plugins/default.nix
+++ b/pkgs/servers/monitoring/plugins/default.nix
@@ -1,6 +1,6 @@
 { stdenv, fetchFromGitHub, fetchpatch, autoreconfHook
 , coreutils, gnugrep, gnused, lm_sensors, net_snmp, openssh, openssl, perl
-, dnsutils, mysql, zlib, openldap
+, dnsutils, mysql, zlib, openldap, procps
 , runtimeShell }:
 
 with stdenv.lib;
@@ -9,7 +9,7 @@ let
   majorVersion = "2.2";
   minorVersion = ".0";
 
-  binPath = makeBinPath [ coreutils gnugrep gnused lm_sensors net_snmp ];
+  binPath = makeBinPath [ coreutils gnugrep gnused lm_sensors net_snmp procps ];
 
 in stdenv.mkDerivation rec {
   name = "monitoring-plugins-${majorVersion}${minorVersion}";
@@ -48,7 +48,7 @@ in stdenv.mkDerivation rec {
   '';
 
   # !!! make openssh a runtime dependency only
-  buildInputs = [ dnsutils mysql net_snmp openldap openssh openssl perl zlib ];
+  buildInputs = [ dnsutils mysql net_snmp openldap openssh openssl perl procps zlib ];
 
   nativeBuildInputs = [ autoreconfHook ];