lapack: force a rebuild on x86_64-darwin

I have no idea why, but Hydra cached a corrupted binary
/nix/store/h0412qmi29ivgrc42lfhi1x290d6l429-lapack-3/lib/liblapack.dylib
so rebuilding it fixes issues in various dependants, e.g.
https://hydra.nixos.org/log/nqfq62pqbbmsq08kb2pljdkz9ldyr57b-python3.10-numpy-1.24.2.drv

+3
+3
pkgs/build-support/alternatives/lapack/default.nix
··· 35 implementation = lapackImplementation; 36 }; 37 38 dontBuild = true; 39 dontConfigure = true; 40 unpackPhase = "src=$PWD";
··· 35 implementation = lapackImplementation; 36 }; 37 38 + # TODO: drop this forced rebuild, as it was needed just once. 39 + rebuild_salt = if stdenv.isDarwin && stdenv.isx86_64 then "J4AQ" else null; 40 + 41 dontBuild = true; 42 dontConfigure = true; 43 unpackPhase = "src=$PWD";