diff options
Diffstat (limited to 'tests/gc-concurrent.nix.in')
-rw-r--r-- | tests/gc-concurrent.nix.in | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/tests/gc-concurrent.nix.in b/tests/gc-concurrent.nix.in new file mode 100644 index 000000000000..0d62849bc52f --- /dev/null +++ b/tests/gc-concurrent.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 = "gc-concurrent"; + system = "@system@"; + builder = "@shell@"; + args = ["-e" "-x" ./gc-concurrent.builder.sh]; + inherit input1 input2; + }; + +} \ No newline at end of file |