mirror of
https://github.com/NixOS/nix.git
synced 2025-11-17 16:02:43 +01:00
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.
12 lines
194 B
C++
12 lines
194 B
C++
#pragma once
|
|
|
|
#include "store-api.hh"
|
|
|
|
namespace nix {
|
|
|
|
std::map<StorePath, StorePath> makeContentAddressed(
|
|
Store & srcStore,
|
|
Store & dstStore,
|
|
const StorePathSet & storePaths);
|
|
|
|
}
|