forked from lix-project/lix
ea71da395f
Starting work on #5638 The exact boundary between `FetchSettings` and `EvalSettings` is not clear to me, but that's fine. First lets clean out `libstore`, and then worry about what, if anything, should be the separation between those two.
14 lines
178 B
C++
14 lines
178 B
C++
#include "fetch-settings.hh"
|
|
|
|
namespace nix {
|
|
|
|
FetchSettings::FetchSettings()
|
|
{
|
|
}
|
|
|
|
FetchSettings fetchSettings;
|
|
|
|
static GlobalConfig::Register rFetchSettings(&fetchSettings);
|
|
|
|
}
|