Skip to content

Commit bb0d35d

Browse files
box64: make hello-x86_64 use crossStdenv
1 parent 11e5030 commit bb0d35d

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

pkgs/top-level/all-packages.nix

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1368,7 +1368,10 @@ with pkgs;
13681368
};
13691369

13701370
box64 = callPackage ../applications/emulators/box64 {
1371-
hello-x86_64 = if stdenv.hostPlatform.isx86_64 then hello else pkgsCross.gnu64.hello;
1371+
hello-x86_64 = hello.override {
1372+
stdenv =
1373+
if stdenv.hostPlatform.isx86_64 then stdenv else crossStdenv.configs.x86_64-unknown-linux-gnu;
1374+
};
13721375
};
13731376

13741377
box86 =

0 commit comments

Comments
 (0)