blob: 87d6ce66533a071b828e48ec897a748144fcb842 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#pragma once
#include "derivations.hh"
namespace nix {
// TODO: make pluggable.
void builtinFetchurl(const BasicDerivation & drv, const std::string & netrcData);
void builtinBuildenv(const BasicDerivation & drv);
void builtinUnpackChannel(const BasicDerivation & drv);
}
|