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