1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2024-09-20 11:11:03 -04:00

Fix fetchTarball with chroot stores

Fixes #2405.
This commit is contained in:
Eelco Dolstra 2019-06-12 10:34:13 +02:00
parent 506b6263ef
commit 06010eaf19
No known key found for this signature in database
GPG key ID: 8170B4726D7198DE

View file

@ -2083,12 +2083,12 @@ void fetch(EvalState & state, const Pos & pos, Value * * args, Value & v,
if (evalSettings.pureEval && !request.expectedHash) if (evalSettings.pureEval && !request.expectedHash)
throw Error("in pure evaluation mode, '%s' requires a 'sha256' argument", who); throw Error("in pure evaluation mode, '%s' requires a 'sha256' argument", who);
Path res = getDownloader()->downloadCached(state.store, request).path; auto res = getDownloader()->downloadCached(state.store, request);
if (state.allowedPaths) if (state.allowedPaths)
state.allowedPaths->insert(res); state.allowedPaths->insert(res.path);
mkString(v, res, PathSet({res})); mkString(v, res.storePath, PathSet({res.storePath}));
} }