nixpkgs/pkgs/os-specific/darwin/apple-source-releases/dyld/default.nix

17 lines
420 B
Nix
Raw Normal View History

{ lib, stdenv, appleDerivation }:
appleDerivation {
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.apsl20;
};
}