forked from lix-project/lix
045708db43
This was the last function using a shell script, so this allows us to get rid of tar, coreutils, bash etc.
13 lines
275 B
C++
13 lines
275 B
C++
#pragma once
|
|
|
|
#include "derivations.hh"
|
|
|
|
namespace nix {
|
|
|
|
// TODO: make pluggable.
|
|
void builtinFetchurl(const BasicDerivation & drv, const std::string & netrcData);
|
|
void builtinBuildenv(const BasicDerivation & drv);
|
|
void builtinUnpackChannel(const BasicDerivation & drv);
|
|
|
|
}
|