unrar: Fix for cross

Just read tool variables from environment,
don't try to set them at all.

+4 -1
+4 -1
pkgs/tools/archivers/unrar/default.nix
··· 10 }; 11 12 postPatch = '' 13 - sed 's/^CXX=g++/#CXX/' -i makefile 14 ''; 15 16 buildPhase = ''
··· 10 }; 11 12 postPatch = '' 13 + substituteInPlace makefile \ 14 + --replace "CXX=" "#CXX=" \ 15 + --replace "STRIP=" "#STRIP=" \ 16 + --replace "AR=" "#AR=" 17 ''; 18 19 buildPhase = ''