Fix 'nix profile'
This commit is contained in:
parent
a045f93396
commit
b8a38fa521
|
@ -126,9 +126,11 @@ struct ProfileManifest
|
|||
StringSink sink;
|
||||
dumpPath(tempDir, sink);
|
||||
|
||||
ValidPathInfo info(store->makeFixedOutputPath(true, info.narHash, "profile", references));
|
||||
auto narHash = hashString(htSHA256, *sink.s);
|
||||
|
||||
ValidPathInfo info(store->makeFixedOutputPath(true, narHash, "profile", references));
|
||||
info.references = std::move(references);
|
||||
info.narHash = hashString(htSHA256, *sink.s);
|
||||
info.narHash = narHash;
|
||||
info.narSize = sink.s->size();
|
||||
info.ca = makeFixedOutputCA(true, info.narHash);
|
||||
|
||||
|
|
Loading…
Reference in a new issue