diff options
author | Jude Taylor <me@jude.bio> | 2015-10-21T21·39-0700 |
---|---|---|
committer | Jude Taylor <me@jude.bio> | 2015-10-21T21·39-0700 |
commit | 76f3ba42fd5516b46c07b8a7cc56f6ef8138f7cc (patch) | |
tree | f5f1b4cae9e815101c0963b33ae49b6cc330552b /src/libstore/globals.cc | |
parent | 2dc8e19a1792bf13fd05693aca47a7063e3f68d4 (diff) |
move preBuildHook defaulting to globals.cc
Diffstat (limited to 'src/libstore/globals.cc')
-rw-r--r-- | src/libstore/globals.cc | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/libstore/globals.cc b/src/libstore/globals.cc index 73f8489438fc..e704837e8798 100644 --- a/src/libstore/globals.cc +++ b/src/libstore/globals.cc @@ -77,6 +77,11 @@ void Settings::processEnvironment() nixLibexecDir = canonPath(getEnv("NIX_LIBEXEC_DIR", NIX_LIBEXEC_DIR)); nixBinDir = canonPath(getEnv("NIX_BIN_DIR", NIX_BIN_DIR)); nixDaemonSocketFile = canonPath(nixStateDir + DEFAULT_SOCKET_PATH); + + // should be set with the other config options, but depends on nixLibexecDir +#ifdef __APPLE__ + preBuildHook = nixLibexecDir + "/nix/resolve-system-dependencies.pl"; +#endif } |