about summary refs log blame commit diff
path: root/tests/gc-concurrent2.nix.in
blob: d331e9c82d9fa356c3286aa84a0bf702feff4d5b (plain) (tree)
1
2
3
4
5
6
7
8






                                                  
                        






                                                  
                        






                                                   
                        



                          
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-concurrent2";
    system = "@system@";
    builder = "@shell@";
    args = ["-e" "-x" ./gc-concurrent2.builder.sh];
    PATH = "@testPath@";
    inherit input1 input2;
  };

}