mirror of
https://github.com/NixOS/nix
synced 2025-07-06 05:01:48 +02:00
WIP
This commit is contained in:
parent
754c910953
commit
efcd30da89
17 changed files with 88 additions and 42 deletions
|
@ -944,7 +944,11 @@ static void opServe(Strings opFlags, Strings opArgs)
|
|||
info.references = readStorePaths<StorePathSet>(*store, in);
|
||||
in >> info.registrationTime >> info.narSize >> info.ultimate;
|
||||
info.sigs = readStrings<StringSet>(in);
|
||||
in >> info.ca;
|
||||
{
|
||||
std::string rawCA;
|
||||
in >> rawCA;
|
||||
info.ca = parseCaOpt(rawCA);
|
||||
}
|
||||
|
||||
if (info.narSize == 0)
|
||||
throw Error("narInfo is too old and missing the narSize field");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue