545c2d0d8c
The advantage is that the resulting closure doesn't need to be signed, so you don't need to configure any binary cache keys on the client.
13 lines
194 B
C++
13 lines
194 B
C++
#pragma once
|
|
|
|
#include "store-api.hh"
|
|
|
|
namespace nix {
|
|
|
|
std::map<StorePath, StorePath> makeContentAddressed(
|
|
Store & srcStore,
|
|
Store & dstStore,
|
|
const StorePathSet & storePaths);
|
|
|
|
}
|