Merge pull request #245793 from trofi/fix-cross-fix

fio: fix cross-compilation

authored by

Nick Cao and committed by
GitHub
8cacc05f e13c711f

+4
+4
pkgs/tools/system/fio/default.nix
··· 16 16 buildInputs = [ python3 zlib ] 17 17 ++ lib.optional (!stdenv.isDarwin) libaio; 18 18 19 + # ./configure does not support autoconf-style --build=/--host=. 20 + # We use $CC instead. 21 + configurePlatforms = [ ]; 22 + 19 23 nativeBuildInputs = [ makeWrapper python3.pkgs.wrapPython ]; 20 24 21 25 strictDeps = true;