Add a big bundle of packages from apple source releases. Many of them only provide headers or stubs, but are what's needed for the upcoming pure-darwin stdenv, and don't do any harm for now.
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
{ 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
|
||||
cp -r os/object.h $out/include/os
|
||||
'';
|
||||
}
|
||||
Reference in New Issue
Block a user