2021-05-28 09:39:13 +00:00
|
|
|
{ appleDerivation', stdenv }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2021-05-28 09:39:13 +00:00
|
|
|
appleDerivation' stdenv {
|
2020-04-24 23:36:52 +00:00
|
|
|
dontBuild = true;
|
|
|
|
installPhase = ''
|
|
|
|
mkdir -p $out/include/ppp
|
|
|
|
|
|
|
|
cp Controller/ppp_msg.h $out/include/ppp
|
|
|
|
cp Controller/pppcontroller_types.h $out/include/ppp
|
|
|
|
cp Controller/pppcontroller_types.h $out/include
|
|
|
|
cp Controller/pppcontroller.defs $out/include/ppp
|
|
|
|
cp Controller/pppcontroller_mach_defines.h $out/include
|
|
|
|
cp Controller/PPPControllerPriv.h $out/include/ppp
|
|
|
|
'';
|
|
|
|
}
|