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