rec {
  shell = "@shell@";

  path = "@testPath@";

  system = "@system@";

  shared = "@extra1@";
    
  mkDerivation = args:
    derivation ({
      inherit system;
      builder = shell;
      args = ["-e" args.builder];
      PATH = path;
    } // removeAttrs args ["builder"]);
}