diff options
Diffstat (limited to 'tests/dependencies.nix.in')
-rw-r--r-- | tests/dependencies.nix.in | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/tests/dependencies.nix.in b/tests/dependencies.nix.in deleted file mode 100644 index c33c6a8d9728..000000000000 --- a/tests/dependencies.nix.in +++ /dev/null @@ -1,29 +0,0 @@ -let { - - input1 = derivation { - name = "dependencies-input-1"; - system = "@system@"; - builder = "@shell@"; - args = ["-e" "-x" ./dependencies.builder1.sh]; - PATH = "@testPath@"; - }; - - input2 = derivation { - name = "dependencies-input-2"; - system = "@system@"; - builder = "@shell@"; - args = ["-e" "-x" (./. ~ "dependencies.builder2.sh")]; - PATH = "@testPath@"; - }; - - body = derivation { - name = "dependencies"; - system = "@system@"; - builder = "@shell@"; - args = ["-e" "-x" (./dependencies.builder0.sh + "/FOOBAR/../.")]; - PATH = "@testPath@"; - input1 = input1 + "/."; - inherit input2; - }; - -} \ No newline at end of file |