aboutsummaryrefslogtreecommitdiff
path: root/tests/build-hook.nix.in
diff options
context:
space:
mode:
Diffstat (limited to 'tests/build-hook.nix.in')
-rw-r--r--tests/build-hook.nix.in25
1 files changed, 25 insertions, 0 deletions
diff --git a/tests/build-hook.nix.in b/tests/build-hook.nix.in
new file mode 100644
index 000000000..920564955
--- /dev/null
+++ b/tests/build-hook.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