2004-05-12 11:35:51 +02:00
|
|
|
let {
|
|
|
|
|
|
|
|
input1 = derivation {
|
2004-05-12 15:49:10 +02:00
|
|
|
name = "build-hook-input-1";
|
2004-05-12 11:35:51 +02:00
|
|
|
system = "@system@";
|
|
|
|
builder = "@shell@";
|
|
|
|
args = ["-e" "-x" ./dependencies.builder1.sh];
|
2006-07-21 15:21:43 +02:00
|
|
|
PATH = "@testPath@";
|
2004-05-12 11:35:51 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
input2 = derivation {
|
2004-05-12 15:49:10 +02:00
|
|
|
name = "build-hook-input-2";
|
2004-05-12 11:35:51 +02:00
|
|
|
system = "@system@";
|
|
|
|
builder = "@shell@";
|
|
|
|
args = ["-e" "-x" ./dependencies.builder2.sh];
|
2006-07-21 15:21:43 +02:00
|
|
|
PATH = "@testPath@";
|
2004-05-12 11:35:51 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
body = derivation {
|
2004-05-12 15:49:10 +02:00
|
|
|
name = "build-hook";
|
2004-05-12 11:35:51 +02:00
|
|
|
system = "@system@";
|
|
|
|
builder = "@shell@";
|
|
|
|
args = ["-e" "-x" ./dependencies.builder0.sh];
|
2006-07-21 15:21:43 +02:00
|
|
|
PATH = "@testPath@";
|
2004-05-12 11:35:51 +02:00
|
|
|
inherit input1 input2;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|