summary refs log tree commit diff
path: root/pkgs/tools/networking/dhcp
diff options
context:
space:
mode:
authorWilliam A. Kennington III <william@wkennington.com>2015-05-24 15:05:17 -0700
committerWilliam A. Kennington III <william@wkennington.com>2015-05-24 15:05:25 -0700
commit580032914f16ece55ee9b4146fc0740975a56f2e (patch)
tree25626a3d14e4da8b879ea343989a520fe200da9f /pkgs/tools/networking/dhcp
parent9f70b1ab313ecfd6322e488879deb32ab58ccaf3 (diff)
downloadnixpkgs-580032914f16ece55ee9b4146fc0740975a56f2e.tar
nixpkgs-580032914f16ece55ee9b4146fc0740975a56f2e.tar.gz
nixpkgs-580032914f16ece55ee9b4146fc0740975a56f2e.tar.bz2
nixpkgs-580032914f16ece55ee9b4146fc0740975a56f2e.tar.lz
nixpkgs-580032914f16ece55ee9b4146fc0740975a56f2e.tar.xz
nixpkgs-580032914f16ece55ee9b4146fc0740975a56f2e.tar.zst
nixpkgs-580032914f16ece55ee9b4146fc0740975a56f2e.zip
dhcp: Add proper bind dependency
Diffstat (limited to 'pkgs/tools/networking/dhcp')
-rw-r--r--pkgs/tools/networking/dhcp/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/tools/networking/dhcp/default.nix b/pkgs/tools/networking/dhcp/default.nix
index 4bf321d1ac0..6b3bf4fcedb 100644
--- a/pkgs/tools/networking/dhcp/default.nix
+++ b/pkgs/tools/networking/dhcp/default.nix
@@ -34,7 +34,7 @@ stdenv.mkDerivation rec {
   # due to an uninitialized variable.
   CFLAGS = "-g -O2 -Wall";
 
-  buildInputs = [ perl makeWrapper openldap ];
+  buildInputs = [ perl makeWrapper openldap bind ];
 
   configureFlags = [
     "--with-libbind=${bind}"