summary refs log tree commit diff
path: root/pkgs/os-specific/darwin/apple-source-releases/launchd/default.nix
blob: eed7982e9d8cc21a8b525d8e1c8f4aabef41bb80 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
{ 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
  '';
}