diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2021-02-26 16:54:44 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-26 16:54:44 +0100 |
commit | 94637cd7e5b644010ff59271f0f648de9c73dab2 (patch) | |
tree | 5155df30a2c9c865ce6ba41c7078a58e65677d6f /src/nix-store/nix-store.cc | |
parent | 8d322f3c942165f451959229416f51d54ae24c28 (diff) | |
parent | f54976d77bd144535e9b4844dbdb6bc52eac11fd (diff) |
Merge pull request #4477 from NixOS/ca/build-remote
Build ca derivations remotely
Diffstat (limited to 'src/nix-store/nix-store.cc')
-rw-r--r-- | src/nix-store/nix-store.cc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/nix-store/nix-store.cc b/src/nix-store/nix-store.cc index e17b38c3c..94d4881dd 100644 --- a/src/nix-store/nix-store.cc +++ b/src/nix-store/nix-store.cc @@ -905,6 +905,10 @@ static void opServe(Strings opFlags, Strings opArgs) if (GET_PROTOCOL_MINOR(clientVersion) >= 3) out << status.timesBuilt << status.isNonDeterministic << status.startTime << status.stopTime; + if (GET_PROTOCOL_MINOR(clientVersion >= 5)) { + worker_proto::write(*store, out, status.builtOutputs); + } + break; } |