depot/third_party/nixpkgs/pkgs/os-specific/darwin/apple-source-releases/libunwind/default.nix
Default email 587713944a Project import generated by Copybara.
GitOrigin-RevId: 6143fc5eeb9c4f00163267708e26191d1e918932
2024-04-21 17:54:59 +02:00

17 lines
331 B
Nix

{ lib, appleDerivation }:
appleDerivation {
dontBuild = true;
# install headers only
installPhase = ''
mkdir -p $out/lib
cp -R include $out/include
'';
meta = with lib; {
maintainers = with maintainers; [ copumpkin lnl7 ];
platforms = platforms.darwin;
license = licenses.apple-psl20;
};
}