summary refs log tree commit diff
path: root/pkgs/stdenv
diff options
context:
space:
mode:
authorJohn Ericson <Ericson2314@yahoo.com>2017-02-05 17:41:31 -0500
committerGitHub <noreply@github.com>2017-02-05 17:41:31 -0500
commitf6ef6b56fe6c659c51b0b4b866e393aa285389b8 (patch)
tree8e7d7d52cdc681bd2fad8fcdccf08e65973efc35 /pkgs/stdenv
parent2c21f742b26e21c2a2bf8d960a364b8e29ad5ad9 (diff)
parent5eaea6cee01e9172ae65ccb6356861786a0f85cc (diff)
downloadnixpkgs-f6ef6b56fe6c659c51b0b4b866e393aa285389b8.tar
nixpkgs-f6ef6b56fe6c659c51b0b4b866e393aa285389b8.tar.gz
nixpkgs-f6ef6b56fe6c659c51b0b4b866e393aa285389b8.tar.bz2
nixpkgs-f6ef6b56fe6c659c51b0b4b866e393aa285389b8.tar.lz
nixpkgs-f6ef6b56fe6c659c51b0b4b866e393aa285389b8.tar.xz
nixpkgs-f6ef6b56fe6c659c51b0b4b866e393aa285389b8.tar.zst
nixpkgs-f6ef6b56fe6c659c51b0b4b866e393aa285389b8.zip
Merge pull request #22387 from Ericson2314/cross-3-platforms
cross stdenv: let build package's build deps resolve to native packages
Diffstat (limited to 'pkgs/stdenv')
-rw-r--r--pkgs/stdenv/cross/default.nix3
1 files changed, 1 insertions, 2 deletions
diff --git a/pkgs/stdenv/cross/default.nix b/pkgs/stdenv/cross/default.nix
index 37f403acee9..e322d465520 100644
--- a/pkgs/stdenv/cross/default.nix
+++ b/pkgs/stdenv/cross/default.nix
@@ -18,8 +18,7 @@ in bootStages ++ [
     hostPlatform = localSystem;
     targetPlatform = crossSystem;
     inherit config overlays;
-    # Should be false, but we're trying to preserve hashes for now
-    selfBuild = true;
+    selfBuild = false;
     # It's OK to change the built-time dependencies
     allowCustomOverrides = true;
     stdenv = vanillaPackages.stdenv // {