minimal-bootstrap: inherit system from hostPlatform

This commit is contained in:
Emily Trau 2023-04-26 15:13:27 +10:00
parent 773cadd5e7
commit 8ea19fbc18

View file

@ -1,11 +1,13 @@
{ lib
, newScope
, system
, stdenv
}:
lib.makeScope newScope (self: with self; {
callPackage = self.callPackage;
inherit (stdenv.hostPlatform) system;
fetchurl = import ../../../build-support/fetchurl/boot.nix {
inherit system;
};