diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2004-05-04T13·22+0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2004-05-04T13·22+0000 |
commit | a7bbe739717c7419a374b29e6e4887325b1af7fd (patch) | |
tree | a24f54f2b71cba90e9d681e55fc351b8795e4550 /tests/dependencies.nix.in | |
parent | ef093aac8f24535f6d0c75332ac7aeafbbe8c161 (diff) |
* Another test.
Diffstat (limited to 'tests/dependencies.nix.in')
-rw-r--r-- | tests/dependencies.nix.in | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/tests/dependencies.nix.in b/tests/dependencies.nix.in new file mode 100644 index 000000000000..920564955a53 --- /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 |