diff options
author | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2012-05-10T02·14-0400 |
---|---|---|
committer | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2012-05-10T02·14-0400 |
commit | 663c06e8cd7d44443b0495b13f2bb08e2cfab889 (patch) | |
tree | 8f3dbb2eb2c923961b22839f927a1b9accb32177 /corepkgs/nar.nix | |
parent | cb1248d2082ff8292e2516f124feea4427cf150a (diff) |
Disable building in chroot for Nix's corepkgs
The dependencies of the corepkgs are not necessarily in the chroot (or in the Nix store), so don't build them in a chroot.
Diffstat (limited to 'corepkgs/nar.nix')
-rw-r--r-- | corepkgs/nar.nix | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/corepkgs/nar.nix b/corepkgs/nar.nix index 5be8be10c166..4747dc31def2 100644 --- a/corepkgs/nar.nix +++ b/corepkgs/nar.nix @@ -28,4 +28,7 @@ derivation { builder = shell; args = [ "-e" builder ]; inherit storePath hashAlgo; + + # Don't build in a chroot because Nix's dependencies may not be there. + __noChroot = true; } |