Without this, verifying TLS certificates would fail on macOS, as well
as any system that doesn't have a certificate file at /etc/ssl/certs/ca-certificates.crt,
which includes e.g. Fedora.
(cherry picked from commit 37b22dae04)
Change-Id: Iaa2e0e9db3747645b5482c82e3e0e4e8f229f5f9
13 lines
265 B
C++
13 lines
265 B
C++
#pragma once
|
|
///@file
|
|
|
|
#include "derivations.hh"
|
|
|
|
namespace nix {
|
|
|
|
// TODO: make pluggable.
|
|
void builtinFetchurl(const BasicDerivation & drv, const std::string & netrcData, const std::string & caFileData);
|
|
void builtinUnpackChannel(const BasicDerivation & drv);
|
|
|
|
}
|