about summary refs log blame commit diff
path: root/tests/parallel.nix.in
blob: 41d6776d1bbe7c185050961b27f21e7a4f663505 (plain) (tree)


















                                             
let {

  mkDrv = text: inputs: derivation {
    name = "parallel";
    system = "@system@";
    builder = "@shell@";
    args = ["-e" "-x" ./parallel.builder.sh];
    shared = "@extra1@";
    inherit text inputs;
  };

  a = mkDrv "a" [];
  b = mkDrv "b" [a];
  c = mkDrv "c" [b];
  d = mkDrv "d" [c];
  e = mkDrv "e" [b c d];

  body = e;
}