summary refs log tree commit diff
path: root/pkgs/os-specific/windows/mingw-w64/headers.nix
blob: 6a93cea6708058bfa337223ae28a2c8e327f9fd0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ stdenvNoCC, mingw_w64 }:

stdenvNoCC.mkDerivation {
  name = "${mingw_w64.name}-headers";
  inherit (mingw_w64) src meta;

  patches = [ ./osvi.patch ];

  preConfigure = ''
    cd mingw-w64-headers
  '';

}