mingw-w64: Depend on own headers derivation

Without this, a `#include <float.h>` resolves incorrectly. Either the
headers weren't on the include path at all, or they only were for
local, not system, imports.

What's weird is this used to not be a problem. Not sure what other
change in e.g. cc-wrapper would affect this.
This commit is contained in:
John Ericson 2017-06-19 15:30:17 -04:00 committed by John Ericson
parent bb7067f882
commit fc42ec0a5c

View file

@ -1,6 +1,7 @@
{ stdenv, callPackage }: { stdenv, callPackage, windows }:
stdenv.mkDerivation { stdenv.mkDerivation {
inherit (callPackage ./common.nix {}) name src; inherit (callPackage ./common.nix {}) name src;
buildInputs = [ windows.mingw_w64_headers ];
dontStrip = true; dontStrip = true;
} }