Skip to content

Commit

Permalink
Merge pull request NixOS#53605 from matthewbauer/fix-53587
Browse files Browse the repository at this point in the history
mingw: use current package set for headers
  • Loading branch information
matthewbauer authored Jan 14, 2019
2 parents 52d7d5e + 0307203 commit 2000d62
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pkgs/os-specific/windows/mingw-w64/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@ in stdenv.mkDerivation {
patches = [ ./osvi.patch ];

meta = {
platforms = stdenv.lib.platforms.windows;
platforms = stdenv.lib.platforms.all;
};
}
2 changes: 1 addition & 1 deletion pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -6815,7 +6815,7 @@ in
# built with, and use, that cross-compiled libc.
gccCrossStageStatic = assert stdenv.targetPlatform != stdenv.hostPlatform; let
libcCross1 =
if stdenv.targetPlatform.libc == "msvcrt" then targetPackages.windows.mingw_w64_headers
if stdenv.targetPlatform.libc == "msvcrt" then windows.mingw_w64_headers
else if stdenv.targetPlatform.libc == "libSystem" then darwin.xcode
else null;
binutils1 = wrapBintoolsWith {
Expand Down

0 comments on commit 2000d62

Please sign in to comment.