* Start of `nix-store --export' operation for serialising a store

path.  This is like `nix-store --dump', only it also dumps the
  meta-information of the store path (references, deriver).  Will add
  a `--sign' flag later to add a cryptographic signature, which we
  will use for exchanging store paths between build farm machines in a
  secure manner.
This commit is contained in:
Eelco Dolstra 2007-02-20 23:17:20 +00:00
parent 3390c1be76
commit b824a1daee
6 changed files with 50 additions and 0 deletions

View file

@ -56,6 +56,9 @@ public:
Path addTextToStore(const string & suffix, const string & s,
const PathSet & references);
void exportPath(const Path & path, bool sign,
Sink & sink);
void buildDerivations(const PathSet & drvPaths);
void ensurePath(const Path & path);