2012-07-08 16:32:12 +02:00
|
|
|
with import <nix/config.nix>;
|
|
|
|
|
2015-10-30 11:27:47 +01:00
|
|
|
{ system ? builtins.currentSystem
|
|
|
|
, url
|
|
|
|
, outputHash ? ""
|
|
|
|
, outputHashAlgo ? ""
|
|
|
|
, md5 ? "", sha1 ? "", sha256 ? ""
|
|
|
|
, executable ? false
|
|
|
|
, unpack ? false
|
|
|
|
, name ? baseNameOf (toString url)
|
|
|
|
}:
|
2012-07-08 16:19:17 +02:00
|
|
|
|
|
|
|
assert (outputHash != "" && outputHashAlgo != "")
|
|
|
|
|| md5 != "" || sha1 != "" || sha256 != "";
|
|
|
|
|
|
|
|
derivation {
|
2015-07-20 04:30:16 +02:00
|
|
|
builder = "builtin:fetchurl";
|
2012-07-08 16:19:17 +02:00
|
|
|
|
|
|
|
# New-style output content requirements.
|
|
|
|
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;
|
2015-10-30 11:27:47 +01:00
|
|
|
outputHashMode = if unpack || executable then "recursive" else "flat";
|
2015-03-24 11:15:45 +01:00
|
|
|
|
2015-10-30 11:27:47 +01:00
|
|
|
inherit name system url executable unpack;
|
2012-07-08 17:11:02 +02:00
|
|
|
|
|
|
|
# No need to double the amount of network traffic
|
|
|
|
preferLocalBuild = true;
|
|
|
|
|
2014-07-16 07:11:24 +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"
|
|
|
|
];
|
2012-07-08 16:19:17 +02:00
|
|
|
}
|