aboutsummaryrefslogtreecommitdiff
path: root/src/libstore/make-content-addressed.hh
blob: c4a66ed414cba3a0386d5c5411dcc3930cb73e5c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#pragma once

#include "store-api.hh"

namespace nix {

std::map<StorePath, StorePath> makeContentAddressed(
    Store & srcStore,
    Store & dstStore,
    const StorePathSet & storePaths);

}