mirror of
https://github.com/NixOS/nix
synced 2025-07-06 00:51:47 +02:00
Add a Store::addToStore() variant that accepts a NAR
As a side effect, this ensures that signatures are propagated when copying paths between stores. Also refactored import/export to make use of this.
This commit is contained in:
parent
b6c768fb6a
commit
538a64e8c3
15 changed files with 235 additions and 338 deletions
|
@ -503,7 +503,7 @@ static void opReadLog(Strings opFlags, Strings opArgs)
|
|||
}
|
||||
|
||||
else if (pathExists(logBz2Path)) {
|
||||
std::cout << *decompress("bzip2", make_ref<std::string>(readFile(logBz2Path)));
|
||||
std::cout << *decompress("bzip2", readFile(logBz2Path));
|
||||
found = true;
|
||||
break;
|
||||
}
|
||||
|
@ -703,9 +703,7 @@ static void opExport(Strings opFlags, Strings opArgs)
|
|||
throw UsageError(format("unknown flag ‘%1%’") % i);
|
||||
|
||||
FdSink sink(STDOUT_FILENO);
|
||||
Paths sorted = store->topoSortPaths(PathSet(opArgs.begin(), opArgs.end()));
|
||||
reverse(sorted.begin(), sorted.end());
|
||||
store->exportPaths(sorted, sink);
|
||||
store->exportPaths(opArgs, sink);
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue