chromium,chromedriver: 129.0.6668.91 -> 129.0.6668.100
[NixPkgs.git] / pkgs / os-specific / darwin / apple-source-releases / CarbonHeaders / default.nix
blobf3ef0e9151f3456f66ed0719537369db53723751
1 { lib, appleDerivation', stdenvNoCC }:
3 appleDerivation' stdenvNoCC {
4   dontBuild = true;
6   installPhase = ''
7     mkdir -p $out/include
8     cp MacTypes.h          $out/include
9     cp ConditionalMacros.h $out/include
11     substituteInPlace $out/include/MacTypes.h \
12       --replace "CarbonCore/" ""
13   '';
15   meta = with lib; {
16     maintainers = with maintainers; [ copumpkin ];
17     platforms   = platforms.darwin;
18     license     = licenses.apple-psl20;
19   };