buildDhallUrl: Respect proxy environment variables

`buildDhallUrl` is a fixed output derivation, which means
that we can (and should) inherit impure proxy-related
environment variables for fetching URLs.

The motivation for this change is:

https://discourse.dhall-lang.org/t/cant-build-a-nixified-dhall-package-in-a-sandbox-depending-on-the-environment/

… where a `buildDhallUrl` derivation was failing in a restricted
networking environment due to not inheriting proxy-related
settings.

Changed files
+2 -1
pkgs
development
interpreters
+2 -1
pkgs/development/interpreters/dhall/build-dhall-url.nix
···
sourceFile = "source.dhall";
in
-
runCommand name { } (''
set -eu
mkdir -p ${cacheDhall} $out/${cacheDhall}
···
sourceFile = "source.dhall";
in
+
runCommand name { impureEnvVars = lib.fetchers.proxyImpureEnvVars; }
+
(''
set -eu
mkdir -p ${cacheDhall} $out/${cacheDhall}