1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
#pragma once
///@file
#include "lix/libstore/build/local-derivation-goal.hh"
#include "lix/libstore/gc-store.hh"
#include "lix/libstore/local-store.hh"
namespace nix {
/**
* Darwin-specific implementation of LocalStore
*/
class DarwinLocalStore : public LocalStore
{
public:
DarwinLocalStore(LocalStoreConfig config)
: Store(config), LocalStore(config)
{
}
DarwinLocalStore(const std::string scheme, std::string path, LocalStoreConfig config)
: DarwinLocalStore(config)
{
throw UnimplementedError("DarwinLocalStore");
}
private:
kj::Promise<Result<void>> findPlatformRoots(UncheckedRoots & unchecked) override;
};
/**
* Darwin-specific implementation of LocalDerivationGoal
*/
class DarwinLocalDerivationGoal : public LocalDerivationGoal
{
public:
using LocalDerivationGoal::LocalDerivationGoal;
private:
/**
* no-op. sandbox profiles are generated in fillBuilderConfig, we only need
* to override this to signal that sandboxed builds are actually supported.
*/
void prepareSandbox() override {}
void fillBuilderConfig(build::Request::Builder config) override;
/**
* Whether we need to rewrite output hashes.
* Always true on Darwin since Darwin requires hash rewriting
* even when sandboxing is enabled.
*/
bool needsHashRewrite() override { return true; };
};
}
|