c556a6ea46
function, so obsolete it. svn path=/nixpkgs/branches/stdenv-updates/; revision=31644
14 lines
294 B
Nix
14 lines
294 B
Nix
{stdenv, mingw_runtime_headers, w32api_headers}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "mingw-headers";
|
|
|
|
phases = [ "installPhase" ];
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/include
|
|
cp -R ${mingw_runtime_headers}/include/* $out/include
|
|
cp -R ${w32api_headers}/include/* $out/include
|
|
'';
|
|
}
|