mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-14 10:16:15 +02:00
d71d9e9fbf
`move` tends to have this `mv` connotation of “I will copy it for you if needs be”
28 lines
706 B
C++
28 lines
706 B
C++
#include "builtins.hh"
|
|
#include "tarfile.hh"
|
|
|
|
namespace nix {
|
|
|
|
void builtinUnpackChannel(const BasicDerivation & drv)
|
|
{
|
|
auto getAttr = [&](const std::string & name) {
|
|
auto i = drv.env.find(name);
|
|
if (i == drv.env.end()) throw Error("attribute '%s' missing", name);
|
|
return i->second;
|
|
};
|
|
|
|
Path out = getAttr("out");
|
|
auto channelName = getAttr("channelName");
|
|
auto src = getAttr("src");
|
|
|
|
createDirs(out);
|
|
|
|
unpackTarfile(src, out);
|
|
|
|
auto entries = readDirectory(out);
|
|
if (entries.size() != 1)
|
|
throw Error("channel tarball '%s' contains more than one file", src);
|
|
renameFile((out + "/" + entries[0].name), (out + "/" + channelName));
|
|
}
|
|
|
|
}
|