forked from lix-project/lix
668ac3ea2c
This avoids sandbox annoyances.
12 lines
219 B
C++
12 lines
219 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);
|
|
|
|
}
|