mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-20 04:33:57 +00:00
7bba32a069
If things build fine with `stdenvNoCC`, let them use that. If tools might be prefixed, prepare for that, either by directly splicing or just using the env vars provided by the wrapper setup-hooks. Co-authored-by: Dmitry Kalinkin <dmitry.kalinkin@gmail.com>
16 lines
512 B
Nix
16 lines
512 B
Nix
{ 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
|
|
'';
|
|
}
|