tcp_wrappers: Use libnsl to fix build after new glibc

https://hydra.nixos.org/build/63759192

https://sourceware.org/ml/libc-alpha/2017-02/msg00478.html

+3 -1
+3 -1
pkgs/os-specific/linux/tcp-wrappers/default.nix
··· 1 - { fetchurl, stdenv }: 2 3 let 4 vanillaVersion = "7.6.q"; ··· 21 tar -xaf $debian 22 patches="$(cat debian/patches/series | sed 's,^,debian/patches/,') $patches" 23 ''; 24 25 makeFlags = [ "STRINGS=" "REAL_DAEMON_DIR=$(out)/bin" "linux" ]; 26
··· 1 + { fetchurl, stdenv, libnsl }: 2 3 let 4 vanillaVersion = "7.6.q"; ··· 21 tar -xaf $debian 22 patches="$(cat debian/patches/series | sed 's,^,debian/patches/,') $patches" 23 ''; 24 + 25 + buildInputs = [ libnsl ]; 26 27 makeFlags = [ "STRINGS=" "REAL_DAEMON_DIR=$(out)/bin" "linux" ]; 28