forked from lix-project/lix
15 lines
255 B
C++
15 lines
255 B
C++
|
#include "tree-info.hh"
|
||
|
#include "store-api.hh"
|
||
|
|
||
|
#include <nlohmann/json.hpp>
|
||
|
|
||
|
namespace nix::fetchers {
|
||
|
|
||
|
StorePath TreeInfo::computeStorePath(Store & store) const
|
||
|
{
|
||
|
assert(narHash);
|
||
|
return store.makeFixedOutputPath(true, narHash, "source");
|
||
|
}
|
||
|
|
||
|
}
|