summary refs log tree commit diff
path: root/pkgs/os-specific/darwin/apple-source-releases/ppp/default.nix
blob: 4ced564ffb7225a61ac968ae0f87b154e15e7236 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ appleDerivation', stdenv }:

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