about summary refs log blame commit diff
path: root/tests/gc-concurrent.nix.in
blob: cf9f673137da69d3c124fbacb3b575a6154a0bc6 (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-concurrent";
    system = "@system@";
    builder = "@shell@";
    args = ["-e" "-x" ./gc-concurrent.builder.sh];
    PATH = "@testPath@";
    inherit input1 input2;
  };

}