crackxls: do not use march=native and mtune=native

patch is from @dezgeg and is contained in #8530

Changed files
+6
pkgs
tools
security
crackxls
+6
pkgs/tools/security/crackxls/default.nix
···
buildInputs = [ pkgconfig autoconf automake openssl libgsf gmp ];
+
patchPhase = ''
+
substituteInPlace Makefile.in \
+
--replace '-march=native' "" \
+
--replace '-mtune=native' ""
+
'';
+
installPhase =
''
mkdir $out/bin