mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-11 00:36:20 +02:00
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);
|
||
|
|
||
|
}
|