Nix 2.26.3
Nix, the purely functional package manager; unstable internal interfaces
 
Loading...
Searching...
No Matches
builtins.hh
Go to the documentation of this file.
1#pragma once
3
4#include "derivations.hh"
5
6namespace nix {
7
8// TODO: make pluggable.
9void builtinFetchurl(
10 const BasicDerivation & drv,
11 const std::map<std::string, Path> & outputs,
12 const std::string & netrcData,
13 const std::string & caFileData);
14
15void builtinUnpackChannel(
16 const BasicDerivation & drv,
17 const std::map<std::string, Path> & outputs);
18
19}
Definition derivations.hh:285