Merge pull request #321282 from NixOS/revert-321253-pr-xsimd-cross

Revert "xsimd: fix cross compilation"

authored by Doron Behar and committed by GitHub f16ae124 45bddb30

+3 -4
+3 -4
pkgs/development/libraries/xsimd/default.nix
··· 32 32 cmake 33 33 ]; 34 34 35 - buildInputs = [ 36 - doctest 37 - ]; 38 - 39 35 cmakeFlags = [ 40 36 # Always build the tests, even if not running them, because testing whether 41 37 # they can be built is a test in itself. ··· 43 39 ]; 44 40 45 41 doCheck = true; 42 + nativeCheckInputs = [ 43 + doctest 44 + ]; 46 45 checkTarget = "xtest"; 47 46 48 47 meta = with lib; {