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