nixpkgs/pkgs/os-specific/darwin/apple-source-releases/ppp/default.nix

17 lines
542 B
Nix

{ stdenv, appleDerivation }:
appleDerivation {
phases = [ "unpackPhase" "installPhase" "fixupPhase" ];
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
'';
}