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.

authored by John Ericson and committed by John Ericson fc42ec0a bb7067f8

+2 -1
+2 -1
pkgs/os-specific/windows/mingw-w64/default.nix
··· 1 - { stdenv, callPackage }: 2 3 stdenv.mkDerivation { 4 inherit (callPackage ./common.nix {}) name src; 5 dontStrip = true; 6 }
··· 1 + { stdenv, callPackage, windows }: 2 3 stdenv.mkDerivation { 4 inherit (callPackage ./common.nix {}) name src; 5 + buildInputs = [ windows.mingw_w64_headers ]; 6 dontStrip = true; 7 }