11 lines
234 B
C++
11 lines
234 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);
|
|
|
|
} // namespace nix
|