diff options
author | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2017-01-19T17·21+0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-01-19T17·21+0100 |
commit | 8af062f372ae5db6a90700641f15d98505b4a839 (patch) | |
tree | 1c4f61be3cca82b3a03255557d9e5f3d87107018 /tests | |
parent | 21948deed99a3295e4d5666e027a6ca42dc00b40 (diff) | |
parent | 28db29786277ce6790ffb1567f9e679c62737b96 (diff) |
Merge pull request #981 from shlevy/build-remote-c++
build-remote: Implement in C++
Diffstat (limited to 'tests')
-rw-r--r-- | tests/remote-builds.nix | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/remote-builds.nix b/tests/remote-builds.nix index 34276e7d6981..d14d6ff7f056 100644 --- a/tests/remote-builds.nix +++ b/tests/remote-builds.nix @@ -43,6 +43,7 @@ in { config, pkgs, ... }: { nix.maxJobs = 0; # force remote building nix.distributedBuilds = true; + nix.envVars = pkgs.lib.mkAfter { NIX_BUILD_HOOK = "${nix}/libexec/nix/build-remote"; }; nix.buildMachines = [ { hostName = "slave1"; sshUser = "root"; |