2021-05-06 12:56:46 -07:00
|
|
|
{ lib, appleDerivation', stdenvNoCC }:
|
2015-02-07 22:53:52 -08:00
|
|
|
|
2021-05-06 12:56:46 -07:00
|
|
|
appleDerivation' stdenvNoCC {
|
2015-02-07 22:53:52 -08:00
|
|
|
installPhase = ''
|
|
|
|
mkdir -p $out/lib $out/include
|
|
|
|
ln -s /usr/lib/dyld $out/lib/dyld
|
|
|
|
cp -r include $out/
|
|
|
|
'';
|
|
|
|
|
2021-01-10 23:54:33 -08:00
|
|
|
meta = with lib; {
|
2015-02-07 22:53:52 -08:00
|
|
|
description = "Impure primitive symlinks to the Mac OS native dyld, along with headers";
|
|
|
|
maintainers = with maintainers; [ copumpkin ];
|
|
|
|
platforms = platforms.darwin;
|
|
|
|
license = licenses.apsl20;
|
|
|
|
};
|
|
|
|
}
|