2005-01-19 16:39:47 +00:00
|
|
|
#ifndef __BUILD_H
|
|
|
|
#define __BUILD_H
|
2003-07-20 19:29:38 +00:00
|
|
|
|
|
|
|
|
2006-09-04 21:06:23 +00:00
|
|
|
#include "types.hh"
|
|
|
|
|
|
|
|
|
|
|
|
namespace nix {
|
|
|
|
|
|
|
|
|
2005-01-20 16:01:07 +00:00
|
|
|
/* Ensure that the output paths of the derivation are valid. If they
|
|
|
|
are already valid, this is a no-op. Otherwise, validity can
|
|
|
|
be reached in two ways. First, if the output paths have
|
|
|
|
substitutes, then those can be used. Second, the output paths can
|
|
|
|
be created by running the builder, after recursively building any
|
|
|
|
sub-derivations. */
|
2005-01-19 15:02:02 +00:00
|
|
|
void buildDerivations(const PathSet & drvPaths);
|
2003-07-20 19:29:38 +00:00
|
|
|
|
2005-01-20 16:01:07 +00:00
|
|
|
/* Ensure that a path is valid. If it is not currently valid, it may
|
|
|
|
be made valid by running a substitute (if defined for the path). */
|
2005-01-19 11:16:11 +00:00
|
|
|
void ensurePath(const Path & storePath);
|
2003-10-16 16:29:57 +00:00
|
|
|
|
2005-02-14 17:35:10 +00:00
|
|
|
|
2006-09-04 21:06:23 +00:00
|
|
|
}
|
|
|
|
|
2005-02-14 17:35:10 +00:00
|
|
|
|
2005-01-19 16:39:47 +00:00
|
|
|
#endif /* !__BUILD_H */
|