aboutsummaryrefslogtreecommitdiff
path: root/tests/dependencies.nix.in
diff options
context:
space:
mode:
Diffstat (limited to 'tests/dependencies.nix.in')
-rw-r--r--tests/dependencies.nix.in3
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/dependencies.nix.in b/tests/dependencies.nix.in
index aec9ec5b5..3e9f66ad6 100644
--- a/tests/dependencies.nix.in
+++ b/tests/dependencies.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 + "/FOOBAR/../.")];
+ PATH = "@testPath@";
input1 = input1 + "/.";
inherit input2;
};