2015-02-07 22:53:52 -08:00
|
|
|
{ stdenv, appleDerivation }:
|
|
|
|
|
|
|
|
appleDerivation {
|
|
|
|
phases = [ "unpackPhase" "installPhase" ];
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
mkdir -p $out/include/dispatch $out/include/os
|
|
|
|
|
|
|
|
cp -r dispatch/*.h $out/include/dispatch
|
|
|
|
cp -r private/*.h $out/include/dispatch
|
2015-10-23 10:34:17 -07:00
|
|
|
cp -r os/object*.h $out/include/os
|
2015-02-07 22:53:52 -08:00
|
|
|
'';
|
|
|
|
}
|