2005-01-31 22:01:55 +00:00
|
|
|
let {
|
|
|
|
|
|
|
|
input1 = derivation {
|
|
|
|
name = "dependencies-input-1";
|
|
|
|
system = "@system@";
|
|
|
|
builder = "@shell@";
|
|
|
|
args = ["-e" "-x" ./dependencies.builder1.sh];
|
2006-07-21 13:21:43 +00:00
|
|
|
PATH = "@testPath@";
|
2005-01-31 22:01:55 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
input2 = derivation {
|
|
|
|
name = "dependencies-input-2";
|
|
|
|
system = "@system@";
|
|
|
|
builder = "@shell@";
|
|
|
|
args = ["-e" "-x" ./dependencies.builder2.sh];
|
2006-07-21 13:21:43 +00:00
|
|
|
PATH = "@testPath@";
|
2005-01-31 22:01:55 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
body = derivation {
|
|
|
|
name = "gc-concurrent2";
|
|
|
|
system = "@system@";
|
|
|
|
builder = "@shell@";
|
|
|
|
args = ["-e" "-x" ./gc-concurrent2.builder.sh];
|
2006-07-21 13:21:43 +00:00
|
|
|
PATH = "@testPath@";
|
2005-01-31 22:01:55 +00:00
|
|
|
inherit input1 input2;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|