14 lines
317 B
Nix
14 lines
317 B
Nix
|
{ 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/
|
||
|
'';
|
||
|
}
|