My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
nomicon/pkgs/os-specific/windows/mingw-w64/headers.nix

16 lines
242 B

{ stdenvNoCC, callPackage }:
let
inherit (callPackage ./common.nix {}) name src;
in stdenvNoCC.mkDerivation {
name = name + "-headers";
inherit src;
patches = [ ./osvi.patch ];
preConfigure = ''
cd mingw-w64-headers
'';
}