summary refs log tree commit diff
path: root/pkgs/os-specific/darwin/apple-source-releases/libunwind/default.nix
blob: 0d378f6089fb3d5e5b939684343f4a8d6fe36b45 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ 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.apsl20;
  };
}