chromium,chromedriver: 129.0.6668.91 -> 129.0.6668.100
[NixPkgs.git] / pkgs / os-specific / darwin / apple-source-releases / libunwind / default.nix
blobdf3c5650452deff480ed54722b3849c3895fce94
1 { lib, appleDerivation }:
3 appleDerivation {
4   dontBuild = true;
6   # install headers only
7   installPhase = ''
8     mkdir -p $out/lib
9     cp -R include $out/include
10   '';
12   meta = with lib; {
13     maintainers = with maintainers; [ copumpkin lnl7 ];
14     platforms   = platforms.darwin;
15     license     = licenses.apple-psl20;
16   };