adcli: fix and enable strictDeps for cross

+7 -2
+7 -2
pkgs/by-name/ad/adcli/package.nix
··· 29 nativeBuildInputs = [ 30 autoreconfHook 31 docbook_xsl 32 pkg-config 33 util-linux 34 xmlto ··· 37 buildInputs = [ 38 cyrus_sasl 39 libkrb5 40 - libxslt 41 openldap 42 ]; 43 44 - configureFlags = [ "--disable-debug" ]; 45 46 postPatch = '' 47 substituteInPlace tools/Makefile.am \
··· 29 nativeBuildInputs = [ 30 autoreconfHook 31 docbook_xsl 32 + libxslt # xsltproc 33 pkg-config 34 util-linux 35 xmlto ··· 38 buildInputs = [ 39 cyrus_sasl 40 libkrb5 41 openldap 42 ]; 43 44 + strictDeps = true; 45 + 46 + configureFlags = [ 47 + "--disable-debug" 48 + "ac_cv_path_KRB5_CONFIG=${lib.getExe' (lib.getDev libkrb5) "krb5-config"}" 49 + ]; 50 51 postPatch = '' 52 substituteInPlace tools/Makefile.am \