2012-07-08 14:32:12 +00:00
|
|
|
with import <nix/config.nix>;
|
|
|
|
|
2013-03-08 00:24:59 +00:00
|
|
|
{system ? builtins.currentSystem, url, outputHash ? "", outputHashAlgo ? "", md5 ? "", sha1 ? "", sha256 ? "", executable ? false}:
|
2012-07-08 14:19:17 +00:00
|
|
|
|
|
|
|
assert (outputHash != "" && outputHashAlgo != "")
|
|
|
|
|| md5 != "" || sha1 != "" || sha256 != "";
|
|
|
|
|
2012-07-09 19:48:55 +00:00
|
|
|
let
|
|
|
|
|
|
|
|
builder = builtins.toFile "fetchurl.sh"
|
2013-03-08 00:24:59 +00:00
|
|
|
(''
|
2012-07-09 19:48:55 +00:00
|
|
|
echo "downloading $url into $out"
|
2012-07-09 19:49:20 +00:00
|
|
|
${curl} --fail --location --max-redirs 20 --insecure "$url" > "$out"
|
2013-03-08 00:24:59 +00:00
|
|
|
'' + (if executable then "${coreutils}/chmod +x $out" else ""));
|
2012-07-09 19:48:55 +00:00
|
|
|
|
|
|
|
in
|
|
|
|
|
2012-07-08 14:19:17 +00:00
|
|
|
derivation {
|
|
|
|
name = baseNameOf (toString url);
|
2012-07-08 14:33:40 +00:00
|
|
|
builder = shell;
|
2012-07-09 19:48:55 +00:00
|
|
|
args = [ "-e" builder ];
|
2012-07-08 14:19:17 +00: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;
|
2013-03-08 00:24:59 +00:00
|
|
|
outputHashMode = if executable then "recursive" else "flat";
|
2012-07-08 14:19:17 +00:00
|
|
|
|
2012-07-09 19:48:55 +00:00
|
|
|
inherit system url;
|
2012-07-08 15:11:02 +00:00
|
|
|
|
|
|
|
# No need to double the amount of network traffic
|
|
|
|
preferLocalBuild = true;
|
|
|
|
|
|
|
|
# Don't build in a chroot because Nix's dependencies may not be there.
|
|
|
|
__noChroot = true;
|
2012-07-08 14:19:17 +00:00
|
|
|
}
|