about summary refs log blame commit diff
path: root/tests/gc-concurrent.nix.in
blob: 0d62849bc52f5aa0b1ab15b1aaf38be6d05cdd98 (plain) (tree)
























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

}