forked from lix-project/lix
<nix/buildenv.nix>: Don't substitute
This should get rid of a certificate warning from "nix-env -i" early in the install script.
This commit is contained in:
parent
a1bf934044
commit
0824f40760
|
@ -8,7 +8,7 @@ derivation {
|
||||||
builder = perl;
|
builder = perl;
|
||||||
args = [ "-w" ./buildenv.pl ];
|
args = [ "-w" ./buildenv.pl ];
|
||||||
|
|
||||||
manifest = manifest;
|
inherit manifest;
|
||||||
|
|
||||||
# !!! grmbl, need structured data for passing this in a clean way.
|
# !!! grmbl, need structured data for passing this in a clean way.
|
||||||
derivations =
|
derivations =
|
||||||
|
@ -23,6 +23,9 @@ derivation {
|
||||||
# network traffic, so don't do that.
|
# network traffic, so don't do that.
|
||||||
preferLocalBuild = true;
|
preferLocalBuild = true;
|
||||||
|
|
||||||
|
# Also don't bother substituting.
|
||||||
|
allowSubstitutes = false;
|
||||||
|
|
||||||
__sandboxProfile = ''
|
__sandboxProfile = ''
|
||||||
(allow sysctl-read)
|
(allow sysctl-read)
|
||||||
(allow file-read*
|
(allow file-read*
|
||||||
|
|
Loading…
Reference in a new issue