forked from lix-project/lix
15 lines
281 B
C++
15 lines
281 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(FileIngestionMethod::Recursive, narHash, "source");
|
|
}
|
|
|
|
}
|