nix-gh/tests/gc-concurrent.nix.in

28 lines
599 B
Nix
Raw Normal View History

let {
input1 = derivation {
name = "dependencies-input-1";
system = "@system@";
builder = "@shell@";
args = ["-e" "-x" ./dependencies.builder1.sh];
2006-07-21 15:21:43 +02:00
PATH = "@testPath@";
};
input2 = derivation {
name = "dependencies-input-2";
system = "@system@";
builder = "@shell@";
args = ["-e" "-x" ./dependencies.builder2.sh];
2006-07-21 15:21:43 +02:00
PATH = "@testPath@";
};
body = derivation {
name = "gc-concurrent";
system = "@system@";
builder = "@shell@";
args = ["-e" "-x" ./gc-concurrent.builder.sh];
2006-07-21 15:21:43 +02:00
PATH = "@testPath@";
inherit input1 input2;
};
}