mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-11 00:36:20 +02:00
668ac3ea2c
This avoids sandbox annoyances.
11 lines
219 B
C++
11 lines
219 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);
|
|
|
|
}
|