about summary refs log tree commit diff
path: root/tests/dependencies.nix.in
diff options
context:
space:
mode:
authorEelco Dolstra <e.dolstra@tudelft.nl>2004-05-04T13·22+0000
committerEelco Dolstra <e.dolstra@tudelft.nl>2004-05-04T13·22+0000
commita7bbe739717c7419a374b29e6e4887325b1af7fd (patch)
treea24f54f2b71cba90e9d681e55fc351b8795e4550 /tests/dependencies.nix.in
parentef093aac8f24535f6d0c75332ac7aeafbbe8c161 (diff)
* Another test.
Diffstat (limited to 'tests/dependencies.nix.in')
-rw-r--r--tests/dependencies.nix.in25
1 files changed, 25 insertions, 0 deletions
diff --git a/tests/dependencies.nix.in b/tests/dependencies.nix.in
new file mode 100644
index 0000000000..920564955a
--- /dev/null
+++ b/tests/dependencies.nix.in
@@ -0,0 +1,25 @@
+let {
+
+  input1 = derivation {
+    name = "dependencies-input-1";
+    system = "@system@";
+    builder = "@shell@";
+    args = ["-e" "-x" ./dependencies.builder1.sh];
+  };
+
+  input2 = derivation {
+    name = "dependencies-input-2";
+    system = "@system@";
+    builder = "@shell@";
+    args = ["-e" "-x" ./dependencies.builder2.sh];
+  };
+
+  body = derivation {
+    name = "dependencies";
+    system = "@system@";
+    builder = "@shell@";
+    args = ["-e" "-x" ./dependencies.builder0.sh];
+    inherit input1 input2;
+  };
+
+}
\ No newline at end of file