aboutsummaryrefslogtreecommitdiff
path: root/pkgs/tools/networking/smokeping
diff options
context:
space:
mode:
authorvolth <volth@webmaster.ms>2018-07-22 02:03:24 +0000
committerMatthew Bauer <mjbauer95@gmail.com>2018-07-21 22:03:24 -0400
commitcc55a3ebcbf7ae1afb77dcf6b1c7f6c0deb68e16 (patch)
tree5f1c203e608071455dbbda699f52730bd4fbf058 /pkgs/tools/networking/smokeping
parentb6704130b426eb30c10424ad84b0e7b8f83a1e0f (diff)
treewide: fix build with disallowed aliases (#43872)
fixes build with disallowed aliases
Diffstat (limited to 'pkgs/tools/networking/smokeping')
-rw-r--r--pkgs/tools/networking/smokeping/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/networking/smokeping/default.nix b/pkgs/tools/networking/smokeping/default.nix
index cca6d630fc13..87e0a788383c 100644
--- a/pkgs/tools/networking/smokeping/default.nix
+++ b/pkgs/tools/networking/smokeping/default.nix
@@ -1,7 +1,7 @@
{ stdenv, fetchurl, fping, rrdtool, FCGI, CGI
, CGIFast, ConfigGrammar, DigestHMAC, NetTelnet
, NetOpenSSH, NetSNMP, LWP, IOTty, perl, NetDNS
-, NetLDAP
+, perlldap
}:
stdenv.mkDerivation rec {
@@ -13,7 +13,7 @@ stdenv.mkDerivation rec {
};
propagatedBuildInputs = [
rrdtool FCGI CGI CGIFast ConfigGrammar DigestHMAC NetTelnet NetOpenSSH
- NetSNMP LWP IOTty fping perl NetDNS NetLDAP ];
+ NetSNMP LWP IOTty fping perl NetDNS perlldap ];
postInstall = ''
mv $out/htdocs/smokeping.fcgi.dist $out/htdocs/smokeping.fcgi
'';