blob: 2ce6ec7bc71563111c90d3e41d3a44f938f377ea (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#pragma once
///@file
#include "store-api.hh"
namespace nix {
std::map<StorePath, StorePath> makeContentAddressed(
Store & srcStore,
Store & dstStore,
const StorePathSet & storePaths);
}
|