diff options
author | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2016-01-18T14·06+0100 |
---|---|---|
committer | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2016-01-18T14·06+0100 |
commit | 0824f407609965302446acb1381e0ce6c878d85f (patch) | |
tree | 20beb5aa3b76cdcf06a6523d6a8f06e66a3b7dd5 /corepkgs/buildenv.nix | |
parent | a1bf934044c39d41f589923090419bb2a01c0260 (diff) |
<nix/buildenv.nix>: Don't substitute
This should get rid of a certificate warning from "nix-env -i" early in the install script.
Diffstat (limited to 'corepkgs/buildenv.nix')
-rw-r--r-- | corepkgs/buildenv.nix | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/corepkgs/buildenv.nix b/corepkgs/buildenv.nix index ab1ce13f2cf6..70981a752c3c 100644 --- a/corepkgs/buildenv.nix +++ b/corepkgs/buildenv.nix @@ -8,7 +8,7 @@ derivation { builder = perl; args = [ "-w" ./buildenv.pl ]; - manifest = manifest; + inherit manifest; # !!! grmbl, need structured data for passing this in a clean way. derivations = @@ -23,6 +23,9 @@ derivation { # network traffic, so don't do that. preferLocalBuild = true; + # Also don't bother substituting. + allowSubstitutes = false; + __sandboxProfile = '' (allow sysctl-read) (allow file-read* |