mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-12 07:04:25 +00:00
![Dmitry Kozlyuk](/assets/img/avatar_default.png)
Version 6.0.0 brings better Win32 API coverage and bugfixes. It's been used in various distros long enough to be considered stable. Latest version 7.0.0 hasn't received extensive testing yet. Announce mail: https://sourceforge.net/p/mingw-w64/mailman/message/36416777/
12 lines
179 B
Nix
12 lines
179 B
Nix
{ stdenvNoCC, mingw_w64 }:
|
|
|
|
stdenvNoCC.mkDerivation {
|
|
name = "${mingw_w64.name}-headers";
|
|
inherit (mingw_w64) src meta;
|
|
|
|
preConfigure = ''
|
|
cd mingw-w64-headers
|
|
'';
|
|
|
|
}
|