mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-15 18:56:16 +02:00
a9b69b2fff
Similar to 1ee42c5b88
, get the "out"
path from the derivation (and complain if it doesn't exist), rather
than getting it from the environment.
18 lines
346 B
C++
18 lines
346 B
C++
#pragma once
|
|
///@file
|
|
|
|
#include "derivations.hh"
|
|
|
|
namespace nix {
|
|
|
|
// TODO: make pluggable.
|
|
void builtinFetchurl(
|
|
const BasicDerivation & drv,
|
|
const std::map<std::string, Path> & outputs,
|
|
const std::string & netrcData);
|
|
|
|
void builtinUnpackChannel(
|
|
const BasicDerivation & drv,
|
|
const std::map<std::string, Path> & outputs);
|
|
|
|
}
|