diff options
author | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2016-07-27T15·47+0200 |
---|---|---|
committer | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2016-08-10T16·05+0200 |
commit | 3eb621750848e0e6b30e5a79f76afbb096bb6c8a (patch) | |
tree | b14f6440f4704f1041c4b0712f5f7bc29884f742 /src/libstore/store-api.hh | |
parent | 2fad86f361d5f6a4896a0364e313f61384945111 (diff) |
Add a "root" parameter to local stores
This makes it easier to create a diverted store, i.e. NIX_REMOTE="local?root=/tmp/root" instead of NIX_REMOTE="local?real=/tmp/root/nix/store&state=/tmp/root/nix/var/nix" NIX_LOG_DIR=/tmp/root/nix/var/log
Diffstat (limited to 'src/libstore/store-api.hh')
-rw-r--r-- | src/libstore/store-api.hh | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/libstore/store-api.hh b/src/libstore/store-api.hh index 0b80312d6307..f80a06aaf8bb 100644 --- a/src/libstore/store-api.hh +++ b/src/libstore/store-api.hh @@ -491,7 +491,9 @@ protected: class LocalFSStore : public Store { public: + const Path rootDir; const Path stateDir; + const Path logDir; LocalFSStore(const Params & params); |