lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 15.09-beta 13 lines 294 B view raw
1{stdenv, mingw_runtime_headers, w32api_headers}: 2 3stdenv.mkDerivation { 4 name = "mingw-headers"; 5 6 phases = [ "installPhase" ]; 7 8 installPhase = '' 9 mkdir -p $out/include 10 cp -R ${mingw_runtime_headers}/include/* $out/include 11 cp -R ${w32api_headers}/include/* $out/include 12 ''; 13}