2013-02-06 15:00:33 +01:00
|
|
|
{ stdenv, curl }: # Note that `curl' may be `null', in case of the native stdenv.
|
2005-02-21 16:52:37 +01:00
|
|
|
|
2008-08-22 17:53:21 +02: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 =
|
|
|
|
stdenv.mkDerivation ({
|
|
|
|
name = "mirrors-list";
|
|
|
|
builder = ./write-mirror-list.sh;
|
|
|
|
} // mirrors);
|
|
|
|
|
|
|
|
# Names of the master sites that are mirrored (i.e., "sourceforge",
|
|
|
|
# "gnu", etc.).
|
2013-02-06 15:00:33 +01:00
|
|
|
sites = builtins.attrNames mirrors;
|
2008-08-22 17:53:21 +02:00
|
|
|
|
2012-08-13 06:01:41 +02:00
|
|
|
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"
|
|
|
|
|
|
|
|
# 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 15:15:28 +01:00
|
|
|
|
|
|
|
# This variable allows overriding the timeout for connecting to
|
|
|
|
# the hashed mirrors.
|
|
|
|
"NIX_CONNECT_TIMEOUT"
|
2012-08-13 06:01:41 +02:00
|
|
|
] ++ (map (site: "NIX_MIRRORS_${site}") sites);
|
|
|
|
|
2008-08-22 17:53:21 +02:00
|
|
|
in
|
2013-02-06 15:00:33 +01:00
|
|
|
|
2007-08-23 17:22:30 +02:00
|
|
|
{ # URL to fetch.
|
|
|
|
url ? ""
|
|
|
|
|
|
|
|
, # Alternatively, a list of URLs specifying alternative download
|
|
|
|
# locations. They are tried in order.
|
|
|
|
urls ? []
|
|
|
|
|
|
|
|
, # 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 ? ""
|
2008-07-23 18:04:10 +02: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
|
2007-08-23 17:22:30 +02:00
|
|
|
}:
|
|
|
|
|
|
|
|
assert urls != [] -> url == "";
|
|
|
|
assert url != "" -> urls == [];
|
2005-02-21 16:52:37 +01:00
|
|
|
|
2008-07-23 18:04:10 +02:00
|
|
|
assert showURLs || (outputHash != "" && outputHashAlgo != "")
|
2005-02-21 16:52:37 +01:00
|
|
|
|| md5 != "" || sha1 != "" || sha256 != "";
|
* The stdenv setup script now defines a generic builder that allows
builders for typical Autoconf-style to be much shorten, e.g.,
. $stdenv/setup
genericBuild
The generic builder does lots of stuff automatically:
- Unpacks source archives specified by $src or $srcs (it knows about
gzip, bzip2, tar, zip, and unpacked source trees).
- Determines the source tree.
- Applies patches specified by $patches.
- Fixes libtool not to search for libraries in /lib etc.
- Runs `configure'.
- Runs `make'.
- Runs `make install'.
- Strips debug information from static libraries.
- Writes nested log information (in the format accepted by
`log2xml').
There are also lots of hooks and variables to customise the generic
builder. See `stdenv/generic/docs.txt'.
* Adapted the base packages (i.e., the ones used by stdenv) to use the
generic builder.
* We now use `curl' instead of `wget' to download files in `fetchurl'.
* Neither `curl' nor `wget' are part of stdenv. We shouldn't
encourage people to download stuff in builders (impure!).
* Updated some packages.
* `buildinputs' is now `buildInputs' (but the old name also works).
* `findInputs' in the setup script now prevents inputs from being
processed multiple times (which could happen, e.g., if an input was
a propagated input of several other inputs; this caused the size
variables like $PATH to blow up exponentially in the worst case).
* Patched GNU Make to write nested log information in the format
accepted by `log2xml'. Also, prior to writing the build command,
Make now writes a line `building X' to indicate what is being
built. This is unfortunately often obscured by the gigantic tool
invocations in many Makefiles. The actual build commands are marked
`unimportant' so that they don't clutter pages generated by
`log2html'.
svn path=/nixpkgs/trunk/; revision=845
2004-03-19 17:53:04 +01:00
|
|
|
|
2007-09-11 17:00:49 +02:00
|
|
|
let
|
|
|
|
|
|
|
|
urls_ = if urls != [] then urls else [url];
|
2010-04-30 22:40:42 +02:00
|
|
|
|
2010-05-03 11:13:17 +02:00
|
|
|
in
|
2010-04-30 22:40:42 +02:00
|
|
|
|
2010-05-03 11:13:17 +02:00
|
|
|
stdenv.mkDerivation {
|
|
|
|
name =
|
|
|
|
if showURLs then "urls"
|
|
|
|
else if name != "" then name
|
|
|
|
else baseNameOf (toString (builtins.head urls_));
|
2013-02-06 15:00:33 +01:00
|
|
|
|
2003-11-03 11:22:00 +01:00
|
|
|
builder = ./builder.sh;
|
2013-02-06 15:00:33 +01:00
|
|
|
|
* The stdenv setup script now defines a generic builder that allows
builders for typical Autoconf-style to be much shorten, e.g.,
. $stdenv/setup
genericBuild
The generic builder does lots of stuff automatically:
- Unpacks source archives specified by $src or $srcs (it knows about
gzip, bzip2, tar, zip, and unpacked source trees).
- Determines the source tree.
- Applies patches specified by $patches.
- Fixes libtool not to search for libraries in /lib etc.
- Runs `configure'.
- Runs `make'.
- Runs `make install'.
- Strips debug information from static libraries.
- Writes nested log information (in the format accepted by
`log2xml').
There are also lots of hooks and variables to customise the generic
builder. See `stdenv/generic/docs.txt'.
* Adapted the base packages (i.e., the ones used by stdenv) to use the
generic builder.
* We now use `curl' instead of `wget' to download files in `fetchurl'.
* Neither `curl' nor `wget' are part of stdenv. We shouldn't
encourage people to download stuff in builders (impure!).
* Updated some packages.
* `buildinputs' is now `buildInputs' (but the old name also works).
* `findInputs' in the setup script now prevents inputs from being
processed multiple times (which could happen, e.g., if an input was
a propagated input of several other inputs; this caused the size
variables like $PATH to blow up exponentially in the worst case).
* Patched GNU Make to write nested log information in the format
accepted by `log2xml'. Also, prior to writing the build command,
Make now writes a line `building X' to indicate what is being
built. This is unfortunately often obscured by the gigantic tool
invocations in many Makefiles. The actual build commands are marked
`unimportant' so that they don't clutter pages generated by
`log2html'.
svn path=/nixpkgs/trunk/; revision=845
2004-03-19 17:53:04 +01:00
|
|
|
buildInputs = [curl];
|
2005-02-21 16:52:37 +01:00
|
|
|
|
2010-05-03 11:13:17 +02:00
|
|
|
urls = urls_;
|
2007-08-23 17:22:30 +02:00
|
|
|
|
2007-08-27 14:44:01 +02:00
|
|
|
# If set, prefer the content-addressable mirrors
|
2008-11-14 17:57:19 +01:00
|
|
|
# (http://nixos.org/tarballs) over the original URLs.
|
2007-08-27 14:44:01 +02:00
|
|
|
preferHashedMirrors = true;
|
2007-08-23 17:22:30 +02:00
|
|
|
|
2005-02-21 16:52:37 +01:00
|
|
|
# New-style output content requirements.
|
2010-05-03 11:13:17 +02:00
|
|
|
outputHashAlgo = if outputHashAlgo != "" then outputHashAlgo else
|
|
|
|
if sha256 != "" then "sha256" else if sha1 != "" then "sha1" else "md5";
|
|
|
|
outputHash = if outputHash != "" then outputHash else
|
|
|
|
if sha256 != "" then sha256 else if sha1 != "" then sha1 else md5;
|
|
|
|
|
2012-08-13 06:01:41 +02:00
|
|
|
inherit showURLs mirrorsFile impureEnvVars;
|
2010-08-04 14:37:03 +02:00
|
|
|
|
|
|
|
# Doing the download on a remote machine just duplicates network
|
|
|
|
# traffic, so don't do that.
|
|
|
|
preferLocalBuild = true;
|
2010-05-03 11:13:17 +02:00
|
|
|
}
|