chromium,chromedriver: 129.0.6668.91 -> 129.0.6668.100
[NixPkgs.git] / pkgs / os-specific / darwin / apple-source-releases / dyld / default.nix
blobe91d703602650e7d0ba86a913b1d07926956a863
1 { lib, appleDerivation', stdenvNoCC }:
3 appleDerivation' stdenvNoCC {
4   installPhase = ''
5     mkdir -p $out/lib $out/include
6     ln -s /usr/lib/dyld $out/lib/dyld
7     cp -r include $out/
8   '';
10   meta = with lib; {
11     description = "Impure primitive symlinks to the Mac OS native dyld, along with headers";
12     maintainers = with maintainers; [ copumpkin ];
13     platforms   = platforms.darwin;
14     license     = licenses.apple-psl20;
15   };