inetutils: fix cross

I guess with #181764 this might've broken for cross.
Perl propagates libxcrypt, but is only listed in nativeBuildInputs.
List libxcrypt in buildInputs to ensure it's picked up properly.

+3 -1
+3 -1
pkgs/tools/networking/inetutils/default.nix
··· 1 1 { stdenv, lib, fetchurl, ncurses, perl, help2man 2 2 , apparmorRulesFromClosure 3 + , libxcrypt 3 4 }: 4 5 5 6 stdenv.mkDerivation rec { ··· 18 19 ./inetutils-1_9-PATH_PROCNET_DEV.patch 19 20 ]; 20 21 22 + strictDeps = true; 21 23 nativeBuildInputs = [ help2man perl /* for `whois' */ ]; 22 - buildInputs = [ ncurses /* for `talk' */ ]; 24 + buildInputs = [ ncurses /* for `talk' */ libxcrypt ]; 23 25 24 26 # Don't use help2man if cross-compiling 25 27 # https://lists.gnu.org/archive/html/bug-sed/2017-01/msg00001.html