This repository has no description
0

Configure Feed

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

1{ 2 run, 3 libcxx, 4 musl, 5 linux, 6}: 7 8run { name = "sysroot"; } '' 9 mkdir -p $out/lib $out/include $out/share 10 11 cp ${libcxx}/lib/* $out/lib/ 12 cp -r ${libcxx}/include/c++ $out/include/ 13 cp -r ${libcxx}/share/libc++ $out/share/ 14 cp -r ${musl}/include/* $out/include/ 15 cp ${musl}/lib/* $out/lib/ 16 cp -r ${linux.headers}/* $out/include/ 17''