2018-02-17 10:44:43 -08:00
|
|
|
{ lib, stdenvNoCC, curl }: # Note that `curl' may be `null', in case of the native stdenvNoCC.
|
2005-02-21 07:52:37 -08:00
|
|
|
|
2008-08-22 08:53:21 -07:00
|
|
|
let
|
|
|
|
|
|
|
|
mirrors = import ./mirrors.nix;
|
|
|
|
|
|
|
|
# Write the list of mirrors to a file that we can reuse between
|
|
|
|
# fetchurl instantiations, instead of passing the mirrors to
|
|
|
|
# fetchurl instantiations via environment variables. This makes the
|
|
|
|
# resulting store derivations (.drv files) much smaller, which in
|
|
|
|
# turn makes nix-env/nix-instantiate faster.
|
|
|
|
mirrorsFile =
|
2018-01-09 15:38:19 -08:00
|
|
|
stdenvNoCC.mkDerivation ({
|
2008-08-22 08:53:21 -07:00
|
|
|
name = "mirrors-list";
|
|
|
|
builder = ./write-mirror-list.sh;
|
2015-02-22 11:26:39 -08:00
|
|
|
preferLocalBuild = true;
|
2008-08-22 08:53:21 -07:00
|
|
|
} // mirrors);
|
|
|
|
|
|
|
|
# Names of the master sites that are mirrored (i.e., "sourceforge",
|
|
|
|
# "gnu", etc.).
|
2013-02-06 06:00:33 -08:00
|
|
|
sites = builtins.attrNames mirrors;
|
2008-08-22 08:53:21 -07:00
|
|
|
|
2018-02-17 10:44:43 -08:00
|
|
|
impureEnvVars = lib.fetchers.proxyImpureEnvVars ++ [
|
2012-08-12 21:01:41 -07:00
|
|
|
# This variable allows the user to pass additional options to curl
|
|
|
|
"NIX_CURL_FLAGS"
|
|
|
|
|
|
|
|
# This variable allows the user to override hashedMirrors from the
|
|
|
|
# command-line.
|
|
|
|
"NIX_HASHED_MIRRORS"
|
2013-02-06 06:15:28 -08:00
|
|
|
|
|
|
|
# This variable allows overriding the timeout for connecting to
|
|
|
|
# the hashed mirrors.
|
|
|
|
"NIX_CONNECT_TIMEOUT"
|
2012-08-12 21:01:41 -07:00
|
|
|
] ++ (map (site: "NIX_MIRRORS_${site}") sites);
|
|
|
|
|
2008-08-22 08:53:21 -07:00
|
|
|
in
|
2013-02-06 06:00:33 -08:00
|
|
|
|
2007-08-23 08:22:30 -07:00
|
|
|
{ # URL to fetch.
|
|
|
|
url ? ""
|
|
|
|
|
|
|
|
, # Alternatively, a list of URLs specifying alternative download
|
|
|
|
# locations. They are tried in order.
|
|
|
|
urls ? []
|
|
|
|
|
2013-05-16 01:18:12 -07:00
|
|
|
, # Additional curl options needed for the download to succeed.
|
|
|
|
curlOpts ? ""
|
|
|
|
|
2007-08-23 08:22:30 -07:00
|
|
|
, # Name of the file. If empty, use the basename of `url' (or of the
|
|
|
|
# first element of `urls').
|
|
|
|
name ? ""
|
|
|
|
|
|
|
|
# Different ways of specifying the hash.
|
|
|
|
, outputHash ? ""
|
|
|
|
, outputHashAlgo ? ""
|
|
|
|
, md5 ? ""
|
|
|
|
, sha1 ? ""
|
|
|
|
, sha256 ? ""
|
2016-04-13 03:56:51 -07:00
|
|
|
, sha512 ? ""
|
2008-07-23 09:04:10 -07:00
|
|
|
|
2014-05-08 05:57:20 -07:00
|
|
|
, recursiveHash ? false
|
|
|
|
|
2017-05-19 12:38:01 -07:00
|
|
|
, # Shell code to build a netrc file for BASIC auth
|
|
|
|
netrcPhase ? null
|
|
|
|
|
|
|
|
, # Impure env vars (http://nixos.org/nix/manual/#sec-advanced-attributes)
|
|
|
|
# needed for netrcPhase
|
|
|
|
netrcImpureEnvVars ? []
|
|
|
|
|
2014-05-08 05:57:20 -07:00
|
|
|
, # Shell code executed after the file has been fetched
|
2014-05-09 08:25:59 -07:00
|
|
|
# successfully. This can do things like check or transform the file.
|
2014-05-08 05:57:20 -07:00
|
|
|
postFetch ? ""
|
|
|
|
|
|
|
|
, # Whether to download to a temporary path rather than $out. Useful
|
|
|
|
# in conjunction with postFetch. The location of the temporary file
|
|
|
|
# is communicated to postFetch via $downloadedFile.
|
|
|
|
downloadToTemp ? false
|
|
|
|
|
2016-01-19 02:17:49 -08:00
|
|
|
, # If true, set executable bit on downloaded file
|
|
|
|
executable ? false
|
|
|
|
|
2008-07-23 09:04:10 -07:00
|
|
|
, # If set, don't download the file, but write a list of all possible
|
|
|
|
# URLs (resulting from resolving mirror:// URLs) to $out.
|
|
|
|
showURLs ? false
|
2015-05-24 06:52:12 -07:00
|
|
|
|
|
|
|
, # Meta information, if any.
|
|
|
|
meta ? {}
|
2017-11-05 01:12:19 -08:00
|
|
|
|
|
|
|
# Passthru information, if any.
|
|
|
|
, passthru ? {}
|
2018-12-30 23:10:28 -08:00
|
|
|
# Doing the download on a remote machine just duplicates network
|
|
|
|
# traffic, so don't do that by default
|
|
|
|
, preferLocalBuild ? true
|
2007-08-23 08:22:30 -07:00
|
|
|
}:
|
|
|
|
|
2016-04-14 04:50:21 -07:00
|
|
|
assert sha512 != "" -> builtins.compareVersions "1.11" builtins.nixVersion <= 0;
|
2005-02-21 07:52:37 -08:00
|
|
|
|
2007-09-11 08:00:49 -07:00
|
|
|
let
|
2018-02-17 10:44:43 -08:00
|
|
|
urls_ =
|
|
|
|
if urls != [] && url == "" then
|
|
|
|
(if lib.isList urls then urls
|
|
|
|
else throw "`urls` is not a list")
|
|
|
|
else if urls == [] && url != "" then [url]
|
|
|
|
else throw "fetchurl requires either `url` or `urls` to be set";
|
|
|
|
|
|
|
|
hash_ =
|
|
|
|
if md5 != "" then throw "fetchurl does not support md5 anymore, please use sha256 or sha512"
|
|
|
|
else if (outputHash != "" && outputHashAlgo != "") then { inherit outputHashAlgo outputHash; }
|
|
|
|
else if sha512 != "" then { outputHashAlgo = "sha512"; outputHash = sha512; }
|
|
|
|
else if sha256 != "" then { outputHashAlgo = "sha256"; outputHash = sha256; }
|
|
|
|
else if sha1 != "" then { outputHashAlgo = "sha1"; outputHash = sha1; }
|
|
|
|
else throw "fetchurl requires a hash for fixed-output derivation: ${lib.concatStringsSep ", " urls_}";
|
2010-05-03 02:13:17 -07:00
|
|
|
in
|
2010-04-30 13:40:42 -07:00
|
|
|
|
2018-02-17 10:44:43 -08:00
|
|
|
stdenvNoCC.mkDerivation {
|
2010-05-03 02:13:17 -07:00
|
|
|
name =
|
|
|
|
if showURLs then "urls"
|
|
|
|
else if name != "" then name
|
2014-05-09 06:50:40 -07:00
|
|
|
else baseNameOf (toString (builtins.head urls_));
|
2013-02-06 06:00:33 -08:00
|
|
|
|
2003-11-03 02:22:00 -08:00
|
|
|
builder = ./builder.sh;
|
2013-02-06 06:00:33 -08:00
|
|
|
|
2018-01-09 12:36:14 -08:00
|
|
|
nativeBuildInputs = [ curl ];
|
2005-02-21 07:52:37 -08:00
|
|
|
|
2010-05-03 02:13:17 -07:00
|
|
|
urls = urls_;
|
2007-08-23 08:22:30 -07:00
|
|
|
|
2007-08-27 05:44:01 -07:00
|
|
|
# If set, prefer the content-addressable mirrors
|
2013-06-25 05:05:48 -07:00
|
|
|
# (http://tarballs.nixos.org) over the original URLs.
|
2007-08-27 05:44:01 -07:00
|
|
|
preferHashedMirrors = true;
|
2007-08-23 08:22:30 -07:00
|
|
|
|
2005-02-21 07:52:37 -08:00
|
|
|
# New-style output content requirements.
|
2018-02-17 10:44:43 -08:00
|
|
|
inherit (hash_) outputHashAlgo outputHash;
|
2010-05-03 02:13:17 -07:00
|
|
|
|
2016-01-19 02:17:49 -08:00
|
|
|
outputHashMode = if (recursiveHash || executable) then "recursive" else "flat";
|
2014-05-08 05:57:20 -07:00
|
|
|
|
2017-05-19 12:38:01 -07:00
|
|
|
inherit curlOpts showURLs mirrorsFile postFetch downloadToTemp executable;
|
|
|
|
|
|
|
|
impureEnvVars = impureEnvVars ++ netrcImpureEnvVars;
|
2010-08-04 05:37:03 -07:00
|
|
|
|
2018-06-10 19:14:18 -07:00
|
|
|
nixpkgsVersion = lib.trivial.release;
|
2016-08-15 07:27:39 -07:00
|
|
|
|
2018-12-30 23:10:28 -08:00
|
|
|
inherit preferLocalBuild;
|
2015-05-24 06:52:12 -07:00
|
|
|
|
2017-05-19 12:38:01 -07:00
|
|
|
postHook = if netrcPhase == null then null else ''
|
|
|
|
${netrcPhase}
|
|
|
|
curlOpts="$curlOpts --netrc-file $PWD/netrc"
|
|
|
|
'';
|
|
|
|
|
2015-05-24 06:52:12 -07:00
|
|
|
inherit meta;
|
2017-11-05 01:12:19 -08:00
|
|
|
inherit passthru;
|
2010-05-03 02:13:17 -07:00
|
|
|
}
|