https://nix-community.github.io/nixpkgs-swh/sources-unstable.json
Raw File
Tip revision: 46fcaf3c8a13f32e2c147fd88f97c4ad2d3b0f27 authored by Stefan Frijters on 01 June 2020, 17:09:11 UTC
openttd: Add XDG support (#89296)
Tip revision: 46fcaf3
fetchers.nix
# snippets that can be shared by multiple fetchers (pkgs/build-support)
{ lib }:
{

  proxyImpureEnvVars = [
    # 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"
  ];

}
back to top