Reduces closure size of cross-compiled binary a bit by not retaining
build-time perl and friends.
Before:
$ nix path-info -Sh $(nix-build -A pkgsCross.ppc64.mc) | unnix
/<<NIX>>/mc-powerpc64-unknown-linux-gnu-4.8.28 273.7M
After:
$ nix path-info -Sh $(nix-build -A pkgsCross.ppc64.mc) | unnix
/<<NIX>>/mc-powerpc64-unknown-linux-gnu-4.8.28 198.6M
Without the change build system tries to execute perl for host (instead
of build) and fails as:
install: cannot stat './mc.hlp.es': No such file or directory
The change pulls patch pending upstream inclusion where `PERL_FOR_BUILD`
is introduced to complement `PERL` for such cases.