2015-07-20 02:30:16 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "derivations.hh"
|
|
|
|
|
|
|
|
namespace nix {
|
|
|
|
|
2018-03-20 16:28:09 +00:00
|
|
|
// TODO: make pluggable.
|
2017-02-16 14:42:49 +00:00
|
|
|
void builtinFetchurl(const BasicDerivation & drv, const std::string & netrcData);
|
2018-03-20 16:28:09 +00:00
|
|
|
void builtinBuildenv(const BasicDerivation & drv);
|
2019-03-27 22:40:35 +00:00
|
|
|
void builtinUnpackChannel(const BasicDerivation & drv);
|
2015-07-20 02:30:16 +00:00
|
|
|
|
|
|
|
}
|