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 buildInputs = [ python3 zlib ] 17 ++ lib.optional (!stdenv.isDarwin) libaio; 18 19 nativeBuildInputs = [ makeWrapper python3.pkgs.wrapPython ]; 20 21 strictDeps = true;
··· 16 buildInputs = [ python3 zlib ] 17 ++ lib.optional (!stdenv.isDarwin) libaio; 18 19 + # ./configure does not support autoconf-style --build=/--host=. 20 + # We use $CC instead. 21 + configurePlatforms = [ ]; 22 + 23 nativeBuildInputs = [ makeWrapper python3.pkgs.wrapPython ]; 24 25 strictDeps = true;