audit: use hostPlatform.isStatic instead of targetPlatform.isStatic

This commit is contained in:
Marco A L Barbosa 2021-06-18 18:45:21 -03:00
parent d1ac06b009
commit 0034539aba

View file

@ -61,7 +61,7 @@ stdenv.mkDerivation rec {
# --whole-archive linker flag is required to be sure that linker
# correctly chooses strong version of symbol regardless of order of
# object files at command line.
+ lib.optionalString stdenv.targetPlatform.isStatic ''
+ lib.optionalString stdenv.hostPlatform.isStatic ''
export LDFLAGS=-Wl,--whole-archive
'';
meta = {