forked from mirrors/nixpkgs
13 lines
334 B
Nix
13 lines
334 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
|
|
'';
|
|
}
|