mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-11 00:36:20 +02:00
Temporarily disable the eval cache
This commit is contained in:
parent
84c273c503
commit
bc57bd2202
1 changed files with 4 additions and 1 deletions
|
@ -557,9 +557,12 @@ ref<eval_cache::EvalCache> openEvalCache(
|
|||
{
|
||||
auto fingerprint = lockedFlake->getFingerprint();
|
||||
return make_ref<nix::eval_cache::EvalCache>(
|
||||
#if 0
|
||||
evalSettings.useEvalCache && evalSettings.pureEval
|
||||
? std::optional { std::cref(fingerprint) }
|
||||
: std::nullopt,
|
||||
:
|
||||
#endif
|
||||
std::nullopt,
|
||||
state,
|
||||
[&state, lockedFlake]()
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue