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

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

  propagatedBuildInputs = [ libdispatch xnu ];

  installPhase = ''
    mkdir -p $out/include/pthread
    cp pthread/*.h $out/include/pthread/
    cp private/*.h $out/include/pthread/
  '';
}