let toolkit =
  let install_tools_path = destination_path // "tools" in
  Biokepi.Machine.Tool.Kit.concat [
    Biokepi.Machine.Tool.Kit.of_list [
      Biokepi.Setup.Biopam.provide ~host ~run_program
        (* We need to reproduce the same path there, this is wrong TODO *)
        ~install_path:(install_tools_path // "biopam-kit")
        biocaml;
      Biokepi.Setup.Biopam.provide ~host ~run_program
        ~install_path:(install_tools_path // "biopam-kit")
        ledit;
    ];
    Biokepi_environment_setup.Tool_providers.default_toolkit () ~host
      ~run_program ~install_tools_path;
  ]