28 lines
No EOL
599 B
Nix
28 lines
No EOL
599 B
Nix
let {
|
|
|
|
input1 = derivation {
|
|
name = "dependencies-input-1";
|
|
system = "@system@";
|
|
builder = "@shell@";
|
|
args = ["-e" "-x" ./dependencies.builder1.sh];
|
|
PATH = "@testPath@";
|
|
};
|
|
|
|
input2 = derivation {
|
|
name = "dependencies-input-2";
|
|
system = "@system@";
|
|
builder = "@shell@";
|
|
args = ["-e" "-x" ./dependencies.builder2.sh];
|
|
PATH = "@testPath@";
|
|
};
|
|
|
|
body = derivation {
|
|
name = "gc-concurrent";
|
|
system = "@system@";
|
|
builder = "@shell@";
|
|
args = ["-e" "-x" ./gc-concurrent.builder.sh];
|
|
PATH = "@testPath@";
|
|
inherit input1 input2;
|
|
};
|
|
|
|
} |