2015-07-20 04:30:16 +02:00
|
|
|
#pragma once
|
|
|
|
|
2020-05-27 21:56:34 +01:00
|
|
|
#include "libstore/derivations.hh"
|
2015-07-20 04:30:16 +02:00
|
|
|
|
|
|
|
namespace nix {
|
|
|
|
|
2018-03-20 17:28:09 +01:00
|
|
|
// TODO: make pluggable.
|
2020-05-17 16:31:57 +01:00
|
|
|
void builtinFetchurl(const BasicDerivation& drv, const std::string& netrcData);
|
|
|
|
void builtinBuildenv(const BasicDerivation& drv);
|
2015-07-20 04:30:16 +02:00
|
|
|
|
2020-05-17 16:31:57 +01:00
|
|
|
} // namespace nix
|