bb5b50588c
GitOrigin-RevId: 9816b99e71c3504b0b4c1f8b2e004148460029d4
26 lines
568 B
Nix
26 lines
568 B
Nix
{ appleDerivation }:
|
|
|
|
appleDerivation {
|
|
# No clue why the same file has two different names. Ask Apple!
|
|
installPhase = ''
|
|
mkdir -p $out/include/ $out/include/servers
|
|
cp liblaunch/*.h $out/include
|
|
|
|
cp liblaunch/bootstrap.h $out/include/servers
|
|
cp liblaunch/bootstrap.h $out/include/servers/bootstrap_defs.h
|
|
'';
|
|
|
|
appleHeaders = ''
|
|
bootstrap.h
|
|
bootstrap_priv.h
|
|
launch.h
|
|
launch_internal.h
|
|
launch_priv.h
|
|
reboot2.h
|
|
servers/bootstrap.h
|
|
servers/bootstrap_defs.h
|
|
vproc.h
|
|
vproc_internal.h
|
|
vproc_priv.h
|
|
'';
|
|
}
|