about summary refs log tree commit diff
path: root/lib
diff options
context:
space:
mode:
authorPol Dellaiera <pol.dellaiera@protonmail.com>2024-05-14 10:27:11 +0200
committerGitHub <noreply@github.com>2024-05-14 10:27:11 +0200
commite6952e37ef386e55b4d45cdddfbc30bea863687f (patch)
tree6bfddccfffe98fa9b7e2b41703da2608031f8806 /lib
parent738fecb726d2636dc0905891b46f276d669a19b9 (diff)
parent3ce10797535119f1e84770a97395f8d0afe18950 (diff)
Merge pull request #306928 from ramboman/fix-fetchers-proxy-vars
lib.fetchers: Add uppercase proxy environment variables
Diffstat (limited to 'lib')
-rw-r--r--lib/fetchers.nix1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/fetchers.nix b/lib/fetchers.nix
index 1107353b51dd3..e94c611299bec 100644
--- a/lib/fetchers.nix
+++ b/lib/fetchers.nix
@@ -8,6 +8,7 @@
     # derivation like fetchurl is allowed to do so since its result is
     # by definition pure.
     "http_proxy" "https_proxy" "ftp_proxy" "all_proxy" "no_proxy"
+    "HTTP_PROXY" "HTTPS_PROXY" "FTP_PROXY" "ALL_PROXY" "NO_PROXY"
   ];
 
 }