summary refs log tree commit diff
path: root/pkgs/top-level/stage.nix
diff options
context:
space:
mode:
authorJohn Ericson <John.Ericson@Obsidian.Systems>2018-09-23 13:18:38 -0400
committerJohn Ericson <John.Ericson@Obsidian.Systems>2018-09-23 13:24:44 -0400
commit359d00f8b0990fdad0bf308e355490058f264ca2 (patch)
tree78cab2a7407352b29d100e7f91f74cd96eaf7129 /pkgs/top-level/stage.nix
parentfdbf9f280fd34ac2090e400d222147496cff73c0 (diff)
downloadnixpkgs-359d00f8b0990fdad0bf308e355490058f264ca2.tar
nixpkgs-359d00f8b0990fdad0bf308e355490058f264ca2.tar.gz
nixpkgs-359d00f8b0990fdad0bf308e355490058f264ca2.tar.bz2
nixpkgs-359d00f8b0990fdad0bf308e355490058f264ca2.tar.lz
nixpkgs-359d00f8b0990fdad0bf308e355490058f264ca2.tar.xz
nixpkgs-359d00f8b0990fdad0bf308e355490058f264ca2.tar.zst
nixpkgs-359d00f8b0990fdad0bf308e355490058f264ca2.zip
top-level: `system` should still come from the host platform
2a6e4ae49a891adc7c0562fda08b17d60beb1b4f and
e51f736076548459f36a1250de4bf6867f880b66 reverted a bit too much, and I
initially missed this when reviewing. The release notes already still
mention this change, too.
Diffstat (limited to 'pkgs/top-level/stage.nix')
-rw-r--r--pkgs/top-level/stage.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/top-level/stage.nix b/pkgs/top-level/stage.nix
index 06978d1067b..7637371a40f 100644
--- a/pkgs/top-level/stage.nix
+++ b/pkgs/top-level/stage.nix
@@ -83,7 +83,7 @@ let
     inherit (super.stdenv) buildPlatform hostPlatform targetPlatform;
   in {
     inherit buildPlatform hostPlatform targetPlatform;
-    inherit (buildPlatform) system;
+    inherit (hostPlatform) system;
   };
 
   splice = self: super: import ./splice.nix lib self (buildPackages != null);