3652326ed2
Previously all includes were anchored in one global mess of header files. This moves the includes into filesystem "namespaces" (if you will) for each sub-package of Nix. Note: This commit does not introduce the relevant build system changes.
11 lines
243 B
C++
11 lines
243 B
C++
#pragma once
|
|
|
|
#include "libstore/derivations.hh"
|
|
|
|
namespace nix {
|
|
|
|
// TODO: make pluggable.
|
|
void builtinFetchurl(const BasicDerivation& drv, const std::string& netrcData);
|
|
void builtinBuildenv(const BasicDerivation& drv);
|
|
|
|
} // namespace nix
|