1
1
Fork 0
mirror of https://github.com/NixOS/nix.git synced 2025-11-14 06:22:42 +01:00

Merge pull request #10678 from nix-windows/windows-substitution-goal

Start building the scheduler for Windows
This commit is contained in:
John Ericson 2024-05-27 17:47:29 -04:00 committed by GitHub
commit d0c7da131f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
25 changed files with 285 additions and 94 deletions

View file

@ -1,37 +0,0 @@
#include "store-api.hh"
#include "build-result.hh"
namespace nix {
void Store::buildPaths(const std::vector<DerivedPath> & reqs, BuildMode buildMode, std::shared_ptr<Store> evalStore)
{
unsupported("buildPaths");
}
std::vector<KeyedBuildResult> Store::buildPathsWithResults(
const std::vector<DerivedPath> & reqs,
BuildMode buildMode,
std::shared_ptr<Store> evalStore)
{
unsupported("buildPathsWithResults");
}
BuildResult Store::buildDerivation(const StorePath & drvPath, const BasicDerivation & drv,
BuildMode buildMode)
{
unsupported("buildDerivation");
}
void Store::ensurePath(const StorePath & path)
{
unsupported("ensurePath");
}
void Store::repairPath(const StorePath & path)
{
unsupported("repairPath");
}
}

View file

@ -9,6 +9,8 @@
namespace nix {
using namespace nix::windows;
void deleteLockFile(const Path & path, Descriptor desc)
{