1
1
Fork 0
mirror of https://github.com/NixOS/nix.git synced 2025-11-16 15:32:43 +01:00

Add a LegacySSHStore that uses nix-store --serve

This is useful for nix-copy-closure.
This commit is contained in:
Eelco Dolstra 2017-02-07 19:28:40 +01:00
parent f38224e924
commit caa5793b4a
No known key found for this signature in database
GPG key ID: 8170B4726D7198DE
2 changed files with 248 additions and 0 deletions

View file

@ -37,6 +37,7 @@ template<class T> T readStorePaths(Store & store, Source & from)
}
template PathSet readStorePaths(Store & store, Source & from);
template Paths readStorePaths(Store & store, Source & from);
/* TODO: Separate these store impls into different files, give them better names */
RemoteStore::RemoteStore(const Params & params, size_t maxConnections)