about summary refs log tree commit diff
path: root/tests/build-hook.nix.in
diff options
context:
space:
mode:
authorEelco Dolstra <e.dolstra@tudelft.nl>2006-07-21T13·21+0000
committerEelco Dolstra <e.dolstra@tudelft.nl>2006-07-21T13·21+0000
commit9c3099d3286b7bc8582b1685ba1917db409cac0c (patch)
tree40c3bc18f1408ef70e1e5dd446460bab762c831e /tests/build-hook.nix.in
parent7adaa6d4466063893c9ac6b5b7d71c423be34b69 (diff)
* Purify `make check'.
Diffstat (limited to 'tests/build-hook.nix.in')
-rw-r--r--tests/build-hook.nix.in3
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/build-hook.nix.in b/tests/build-hook.nix.in
index b38077e7f7..697cab81e1 100644
--- a/tests/build-hook.nix.in
+++ b/tests/build-hook.nix.in
@@ -5,6 +5,7 @@ let {
     system = "@system@";
     builder = "@shell@";
     args = ["-e" "-x" ./dependencies.builder1.sh];
+    PATH = "@testPath@";
   };
 
   input2 = derivation {
@@ -12,6 +13,7 @@ let {
     system = "@system@";
     builder = "@shell@";
     args = ["-e" "-x" ./dependencies.builder2.sh];
+    PATH = "@testPath@";
   };
 
   body = derivation {
@@ -19,6 +21,7 @@ let {
     system = "@system@";
     builder = "@shell@";
     args = ["-e" "-x" ./dependencies.builder0.sh];
+    PATH = "@testPath@";
     inherit input1 input2;
   };