mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2025-02-14 14:17:18 +02:00
![Eelco Dolstra](/assets/img/avatar_default.png)
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);
|
|
|
|
}
|