diff options
author | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2015-09-03T10·56+0200 |
---|---|---|
committer | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2015-09-03T10·56+0200 |
commit | 71a5161365f40699092e491bbff88473237fc432 (patch) | |
tree | 02d1303475e895283707e5548d4d93385730d222 /src/libstore/worker-protocol.hh | |
parent | 6e06a18d1b45ab50f54f527570aeff40201090ff (diff) |
Implement buildDerivation() via the daemon
Diffstat (limited to 'src/libstore/worker-protocol.hh')
-rw-r--r-- | src/libstore/worker-protocol.hh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/libstore/worker-protocol.hh b/src/libstore/worker-protocol.hh index d037d7402ede..5a0ef5117aa6 100644 --- a/src/libstore/worker-protocol.hh +++ b/src/libstore/worker-protocol.hh @@ -43,7 +43,8 @@ typedef enum { wopQuerySubstitutablePaths = 32, wopQueryValidDerivers = 33, wopOptimiseStore = 34, - wopVerifyStore = 35 + wopVerifyStore = 35, + wopBuildDerivation = 36, } WorkerOp; |