summary refs log blame commit diff
path: root/pkgs/os-specific/darwin/apple-source-releases/ppp/default.nix
blob: 17c24bebfda7d0581983da8ff816272932f5a3d0 (plain) (tree)
1
2
3
4


                            
                   










                                                               
{ stdenv, appleDerivation }:

appleDerivation {
  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
  '';
}