2015-10-28 02:00:00 +01:00
|
|
|
{ stdenv, appleDerivation, dyld, osx_private_sdk }:
|
2015-02-08 07:53:52 +01:00
|
|
|
|
|
|
|
appleDerivation {
|
2015-10-28 18:53:51 +01:00
|
|
|
phases = [ "unpackPhase" "installPhase" ];
|
2015-02-08 07:53:52 +01:00
|
|
|
|
|
|
|
installPhase = ''
|
2015-10-28 02:00:00 +01:00
|
|
|
mkdir -p $out/lib
|
|
|
|
cp -R include $out/include
|
2015-02-08 07:53:52 +01:00
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
maintainers = with maintainers; [ copumpkin ];
|
|
|
|
platforms = platforms.darwin;
|
|
|
|
license = licenses.apsl20;
|
|
|
|
};
|
|
|
|
}
|