summary refs log tree commit diff
path: root/pkgs/os-specific/darwin/apple-source-releases/launchd/default.nix
blob: c0e00ca1636e9a44de4672cb104449a9496e6e5c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ stdenv, appleDerivation }:

appleDerivation {
  phases = [ "unpackPhase" "installPhase" ];

  # 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
  '';
}