587713944a
GitOrigin-RevId: 6143fc5eeb9c4f00163267708e26191d1e918932
16 lines
442 B
Nix
16 lines
442 B
Nix
{ lib, appleDerivation', stdenvNoCC }:
|
|
|
|
appleDerivation' stdenvNoCC {
|
|
installPhase = ''
|
|
mkdir -p $out/lib $out/include
|
|
ln -s /usr/lib/dyld $out/lib/dyld
|
|
cp -r include $out/
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Impure primitive symlinks to the Mac OS native dyld, along with headers";
|
|
maintainers = with maintainers; [ copumpkin ];
|
|
platforms = platforms.darwin;
|
|
license = licenses.apple-psl20;
|
|
};
|
|
}
|