about summary refs log tree commit diff
path: root/tests/dependencies.nix.in
blob: 920564955a537421754bc1c59e80f90abae75d3c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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;
  };

}