Merge pull request #10659 from edolstra/fix-builtin-fetchurl-drvPath

builtin:fetchurl: Revert impureEnvVars attribute
This commit is contained in:
Théophane Hufschmitt 2024-05-07 11:52:51 +02:00 committed by GitHub
commit 9763eb2fcb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -28,13 +28,9 @@ derivation ({
# No need to double the amount of network traffic
preferLocalBuild = true;
# This attribute does nothing; it's here to avoid changing evaluation results.
impureEnvVars = [
# We borrow these environment variables from the caller to allow
# easy proxy configuration. This is impure, but a fixed-output
# 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"
];
# To make "nix-prefetch-url" work.