blob: ce0911e2a3266fadcb542a4f7a3850c5ad02d3f7 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#include "serialise.hh"
namespace nix {
void unpackTarfile(Source & source, const Path & destDir);
void unpackTarfile(const Path & tarFile, const Path & destDir,
std::optional<std::string> baseName = {});
}
|