minixml: fix darwin build

The default configuration tries to build an intel+arm version on
darwin-aarch64 which fails, but which we don't need.
Remove the explicit architecture flags to fix the build.

+5
+5
pkgs/development/libraries/minixml/default.nix
··· 11 11 sha256 = "sha256-l7GUA+vlSECi/72eU3Y9COpGtLTRh3vYcHUi+uRkCn8="; 12 12 }; 13 13 14 + # remove the -arch flags which are set by default in the build 15 + configureFlags = lib.optionals stdenv.isDarwin [ 16 + "--with-archflags=\"-mmacosx-version-min=10.14\"" 17 + ]; 18 + 14 19 enableParallelBuilding = true; 15 20 16 21 meta = with lib; {