2015-07-20 05:30:16 +03:00
|
|
|
|
#include "builtins.hh"
|
|
|
|
|
#include "download.hh"
|
|
|
|
|
|
|
|
|
|
namespace nix {
|
|
|
|
|
|
|
|
|
|
void builtinFetchurl(const BasicDerivation & drv)
|
|
|
|
|
{
|
|
|
|
|
auto url = drv.env.find("url");
|
|
|
|
|
if (url == drv.env.end()) throw Error("attribute ‘url’ missing");
|
2015-10-21 15:59:01 +03:00
|
|
|
|
|
|
|
|
|
/* No need to do TLS verification, because we check the hash of
|
|
|
|
|
the result anyway. */
|
|
|
|
|
DownloadOptions options;
|
|
|
|
|
options.verifyTLS = false;
|
|
|
|
|
|
2015-10-21 16:03:29 +03:00
|
|
|
|
/* Show a progress indicator, even though stderr is not a tty. */
|
|
|
|
|
options.forceProgress = true;
|
|
|
|
|
|
|
|
|
|
auto data = downloadFile(url->second, options);
|
2015-07-20 05:30:16 +03:00
|
|
|
|
|
|
|
|
|
auto out = drv.env.find("out");
|
|
|
|
|
if (out == drv.env.end()) throw Error("attribute ‘url’ missing");
|
|
|
|
|
writeFile(out->second, data.data);
|
|
|
|
|
|
2015-07-23 23:25:04 +03:00
|
|
|
|
auto executable = drv.env.find("executable");
|
2015-07-20 05:30:16 +03:00
|
|
|
|
if (executable != drv.env.end() && executable->second == "1") {
|
|
|
|
|
if (chmod(out->second.c_str(), 0755) == -1)
|
|
|
|
|
throw SysError(format("making ‘%1%’ executable") % out->second);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|