2015-02-07 22:53:52 -08:00
|
|
|
{ stdenv, appleDerivation }:
|
|
|
|
|
|
|
|
appleDerivation {
|
2018-05-06 14:07:55 -07:00
|
|
|
dontConfigure = true;
|
|
|
|
dontBuild = true;
|
2015-02-07 22:53:52 -08:00
|
|
|
installPhase = ''
|
|
|
|
mkdir -p $out/include/dispatch $out/include/os
|
|
|
|
|
2017-05-23 16:13:20 -07:00
|
|
|
# Move these headers so CF can find <os/voucher_private.h>
|
|
|
|
mv private/voucher*.h $out/include/os
|
2015-02-07 22:53:52 -08:00
|
|
|
cp -r private/*.h $out/include/dispatch
|
2017-05-23 16:13:20 -07:00
|
|
|
|
|
|
|
cp -r dispatch/*.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
|
|
|
'';
|
|
|
|
}
|