mirror of
https://github.com/NixOS/nix
synced 2025-06-30 19:57:59 +02:00
Move code around
This commit is contained in:
parent
d14b1c261c
commit
d33dd6e6c0
7 changed files with 22 additions and 6 deletions
14
src/libutil/tarfile.cc
Normal file
14
src/libutil/tarfile.cc
Normal file
|
@ -0,0 +1,14 @@
|
|||
#include "rust-ffi.hh"
|
||||
|
||||
extern "C" {
|
||||
rust::CBox2<rust::Result<std::tuple<>>> unpack_tarfile(rust::Source source, rust::StringSlice dest_dir);
|
||||
}
|
||||
|
||||
namespace nix {
|
||||
|
||||
void unpackTarfile(Source & source, Path destDir)
|
||||
{
|
||||
unpack_tarfile(source, destDir).use()->unwrap();
|
||||
}
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue