nix-super/src/libutil/tarfile.hh

11 lines
215 B
C++
Raw Normal View History

2019-09-11 14:10:46 +03:00
#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 = {});
2019-09-11 14:10:46 +03:00
}