nixpkgs/pkgs/os-specific/windows/mingw-w64/headers.nix

14 lines
210 B
Nix
Raw Normal View History

2018-08-10 16:00:49 +00:00
{ stdenvNoCC, mingw_w64 }:
2018-08-10 16:00:49 +00:00
stdenvNoCC.mkDerivation {
name = "${mingw_w64.name}-headers";
inherit (mingw_w64) src meta;
patches = [ ./osvi.patch ];
preConfigure = ''
cd mingw-w64-headers
'';
2018-08-10 16:00:49 +00:00
}