mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-02 18:42:15 +00:00
19 lines
468 B
Nix
19 lines
468 B
Nix
{ stdenv, appleDerivation }:
|
|
|
|
appleDerivation {
|
|
phases = [ "unpackPhase" "installPhase" ];
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/lib $out/include
|
|
ln -s /usr/lib/dyld $out/lib/dyld
|
|
cp -r include $out/
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Impure primitive symlinks to the Mac OS native dyld, along with headers";
|
|
maintainers = with maintainers; [ copumpkin ];
|
|
platforms = platforms.darwin;
|
|
license = licenses.apsl20;
|
|
};
|
|
}
|