diff options
author | Shea Levy <shea@shealevy.com> | 2017-03-08T13·46-0500 |
---|---|---|
committer | Shea Levy <shea@shealevy.com> | 2017-03-08T13·46-0500 |
commit | 93f863be9626e5455458abf9e449586270e98163 (patch) | |
tree | dd56f2d5ef593755bed49cbb1609e8b47980b719 /src/libstore/globals.cc | |
parent | 121a407eecd4a176adbfbacf49735b3dfc303e79 (diff) |
Add option to disable import-from-derivation completely, even if the drv is already realized
Diffstat (limited to 'src/libstore/globals.cc')
-rw-r--r-- | src/libstore/globals.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/libstore/globals.cc b/src/libstore/globals.cc index fcd6347294ca..df537a51255a 100644 --- a/src/libstore/globals.cc +++ b/src/libstore/globals.cc @@ -70,6 +70,7 @@ Settings::Settings() enableImportNative = false; netrcFile = fmt("%s/%s", nixConfDir, "netrc"); caFile = getEnv("NIX_SSL_CERT_FILE", getEnv("SSL_CERT_FILE", "/etc/ssl/certs/ca-certificates.crt")); + enableImportFromDerivation = true; } @@ -185,6 +186,7 @@ void Settings::update() _get(keepGoing, "keep-going"); _get(keepFailed, "keep-failed"); _get(netrcFile, "netrc-file"); + _get(enableImportFromDerivation, "allow-import-from-derivation"); } |